Spaces:
Build error
Build error
Upload folder using huggingface_hub
Browse files- __pycache__/brave_search_tool.cpython-312.pyc +0 -0
- __pycache__/deep_research.cpython-312.pyc +0 -0
- __pycache__/email_agent.cpython-312.pyc +0 -0
- __pycache__/file_processor.cpython-312.pyc +0 -0
- __pycache__/gemini_model.cpython-312.pyc +0 -0
- __pycache__/model_config.cpython-312.pyc +0 -0
- __pycache__/planner_agent.cpython-312.pyc +0 -0
- __pycache__/research_manager.cpython-312.pyc +0 -0
- __pycache__/search_agent.cpython-312.pyc +0 -0
- __pycache__/writer_agent.cpython-312.pyc +0 -0
- conversation history backup temporary/7343bbc4-b49d-4b9d-8201-0bc3da9a2cc3.jsonl +0 -0
- deep_research.py +2 -1
__pycache__/brave_search_tool.cpython-312.pyc
CHANGED
|
Binary files a/__pycache__/brave_search_tool.cpython-312.pyc and b/__pycache__/brave_search_tool.cpython-312.pyc differ
|
|
|
__pycache__/deep_research.cpython-312.pyc
CHANGED
|
Binary files a/__pycache__/deep_research.cpython-312.pyc and b/__pycache__/deep_research.cpython-312.pyc differ
|
|
|
__pycache__/email_agent.cpython-312.pyc
CHANGED
|
Binary files a/__pycache__/email_agent.cpython-312.pyc and b/__pycache__/email_agent.cpython-312.pyc differ
|
|
|
__pycache__/file_processor.cpython-312.pyc
CHANGED
|
Binary files a/__pycache__/file_processor.cpython-312.pyc and b/__pycache__/file_processor.cpython-312.pyc differ
|
|
|
__pycache__/gemini_model.cpython-312.pyc
CHANGED
|
Binary files a/__pycache__/gemini_model.cpython-312.pyc and b/__pycache__/gemini_model.cpython-312.pyc differ
|
|
|
__pycache__/model_config.cpython-312.pyc
ADDED
|
Binary file (1.8 kB). View file
|
|
|
__pycache__/planner_agent.cpython-312.pyc
CHANGED
|
Binary files a/__pycache__/planner_agent.cpython-312.pyc and b/__pycache__/planner_agent.cpython-312.pyc differ
|
|
|
__pycache__/research_manager.cpython-312.pyc
CHANGED
|
Binary files a/__pycache__/research_manager.cpython-312.pyc and b/__pycache__/research_manager.cpython-312.pyc differ
|
|
|
__pycache__/search_agent.cpython-312.pyc
CHANGED
|
Binary files a/__pycache__/search_agent.cpython-312.pyc and b/__pycache__/search_agent.cpython-312.pyc differ
|
|
|
__pycache__/writer_agent.cpython-312.pyc
CHANGED
|
Binary files a/__pycache__/writer_agent.cpython-312.pyc and b/__pycache__/writer_agent.cpython-312.pyc differ
|
|
|
conversation history backup temporary/7343bbc4-b49d-4b9d-8201-0bc3da9a2cc3.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
deep_research.py
CHANGED
|
@@ -1207,7 +1207,8 @@ with gr.Blocks(theme=luntre_theme, css=custom_css, title="Luntre AI - Deep Resea
|
|
| 1207 |
max_lines=5,
|
| 1208 |
show_label=False,
|
| 1209 |
container=False,
|
| 1210 |
-
elem_classes="chat-input"
|
|
|
|
| 1211 |
)
|
| 1212 |
|
| 1213 |
with gr.Row(elem_classes="controls-row"):
|
|
|
|
| 1207 |
max_lines=5,
|
| 1208 |
show_label=False,
|
| 1209 |
container=False,
|
| 1210 |
+
elem_classes="chat-input",
|
| 1211 |
+
submit_js="(x) => { if (event.key === 'Enter' && !event.shiftKey) { return x; } else { return x; } }"
|
| 1212 |
)
|
| 1213 |
|
| 1214 |
with gr.Row(elem_classes="controls-row"):
|