Spaces:
Sleeping
Sleeping
Debug=false, lower verbosity level
Browse files- Gradio_UI.py +1 -1
- 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=
|
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=
|
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
|