From 05343f4586bc284dc584be8e8ae96f1164dd94ae Mon Sep 17 00:00:00 2001 From: Mark Backman Date: Tue, 17 Dec 2024 14:53:50 -0500 Subject: [PATCH] Remove pre_actions from insurance demo initial node --- examples/dynamic/insurance_gemini.py | 3 --- examples/dynamic/insurance_openai.py | 3 --- 2 files changed, 6 deletions(-) diff --git a/examples/dynamic/insurance_gemini.py b/examples/dynamic/insurance_gemini.py index 88b9c43..0c82ff6 100644 --- a/examples/dynamic/insurance_gemini.py +++ b/examples/dynamic/insurance_gemini.py @@ -174,9 +174,6 @@ def create_initial_node() -> NodeConfig: }, } ], - "pre_actions": [ - {"type": "tts_say", "text": "Welcome! Let's find the right insurance coverage for you."} - ], } diff --git a/examples/dynamic/insurance_openai.py b/examples/dynamic/insurance_openai.py index 94ff26f..2435f31 100644 --- a/examples/dynamic/insurance_openai.py +++ b/examples/dynamic/insurance_openai.py @@ -174,9 +174,6 @@ def create_initial_node() -> NodeConfig: }, } ], - "pre_actions": [ - {"type": "tts_say", "text": "Welcome! Let's find the right insurance coverage for you."} - ], }