Update main.py
This commit is contained in:
parent
76b5886dd0
commit
f98b67ee52
|
|
@ -10,8 +10,6 @@ def main():
|
||||||
shared = {
|
shared = {
|
||||||
"user_audio_data": None,
|
"user_audio_data": None,
|
||||||
"user_audio_sample_rate": None,
|
"user_audio_sample_rate": None,
|
||||||
"user_text_query": None,
|
|
||||||
"llm_text_response": None,
|
|
||||||
"chat_history": [],
|
"chat_history": [],
|
||||||
"continue_conversation": True # Flag to control the main conversation loop
|
"continue_conversation": True # Flag to control the main conversation loop
|
||||||
}
|
}
|
||||||
|
|
@ -25,4 +23,4 @@ def main():
|
||||||
voice_chat_flow.run(shared)
|
voice_chat_flow.run(shared)
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
main()
|
main()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue