tonko22 commited on
Commit
cb31ce4
·
1 Parent(s): 0f4f8b4

Debug=false, lower verbosity level

Browse files
Files changed (2) hide show
  1. Gradio_UI.py +1 -1
  2. app.py +1 -1
Gradio_UI.py CHANGED
@@ -284,7 +284,7 @@ class GradioUI:
284
  [stored_messages, text_input],
285
  ).then(self.interact_with_agent, [stored_messages, chatbot], [chatbot])
286
 
287
- demo.launch(debug=True, share=True, **kwargs)
288
 
289
 
290
  __all__ = ["stream_to_gradio", "GradioUI"]
 
284
  [stored_messages, text_input],
285
  ).then(self.interact_with_agent, [stored_messages, chatbot], [chatbot])
286
 
287
+ demo.launch(debug=False, share=True, **kwargs)
288
 
289
 
290
  __all__ = ["stream_to_gradio", "GradioUI"]
app.py CHANGED
@@ -68,7 +68,7 @@ agent = CodeAgent(
68
  model=model,
69
  additional_authorized_imports=['numpy', 'bs4'],
70
  max_steps=22,
71
- verbosity_level=1,
72
  name="Song Lyrics Analyzer",
73
  description="Analyze the meaning of song lyrics and identify key themes based on the lyrics using web search tools and deep lyrics analysis tool.",
74
  prompt_templates=prompt_templates
 
68
  model=model,
69
  additional_authorized_imports=['numpy', 'bs4'],
70
  max_steps=22,
71
+ verbosity_level=0,
72
  name="Song Lyrics Analyzer",
73
  description="Analyze the meaning of song lyrics and identify key themes based on the lyrics using web search tools and deep lyrics analysis tool.",
74
  prompt_templates=prompt_templates