Update main.py

This commit is contained in:
Zachary Huang
2025-05-14 15:09:23 -04:00
committed by GitHub
parent 76b5886dd0
commit f98b67ee52
+1 -3
View File
@@ -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()