Spaces:
Sleeping
Sleeping
Blank_Answer
commited on
Commit
·
c8fe855
1
Parent(s):
90b9c1e
test
Browse files- app.py +3 -3
- gradio_agentchatbot/__pycache__/__init__.cpython-310.pyc +0 -0
- gradio_agentchatbot/__pycache__/agentchatbot.cpython-310.pyc +0 -0
- gradio_agentchatbot/__pycache__/utils.cpython-310.pyc +0 -0
- mindsearch/__pycache__/__init__.cpython-310.pyc +0 -0
- mindsearch/__pycache__/app.cpython-310.pyc +0 -0
- mindsearch/agent/__pycache__/__init__.cpython-310.pyc +0 -0
- mindsearch/agent/__pycache__/graph.cpython-310.pyc +0 -0
- mindsearch/agent/__pycache__/mindsearch_agent.cpython-310.pyc +0 -0
- mindsearch/agent/__pycache__/mindsearch_prompt.cpython-310.pyc +0 -0
- mindsearch/agent/__pycache__/models.cpython-310.pyc +0 -0
- mindsearch/agent/__pycache__/streaming.cpython-310.pyc +0 -0
app.py
CHANGED
|
@@ -16,8 +16,8 @@ from lagent.schema import AgentStatusCode
|
|
| 16 |
from schemdraw import flow
|
| 17 |
import subprocess
|
| 18 |
|
| 19 |
-
|
| 20 |
-
|
| 21 |
|
| 22 |
PLANNER_HISTORY = []
|
| 23 |
SEARCHER_HISTORY = []
|
|
@@ -310,4 +310,4 @@ with gr.Blocks(css=os.path.join(os.path.dirname(__file__), "css", "gradio_front.
|
|
| 310 |
clearBtn.click(rst_mem, None, [planner, searcher, node_count], queue=False)
|
| 311 |
|
| 312 |
demo.queue()
|
| 313 |
-
demo.launch(
|
|
|
|
| 16 |
from schemdraw import flow
|
| 17 |
import subprocess
|
| 18 |
|
| 19 |
+
os.system("pip install gradio==5.3.0")
|
| 20 |
+
os.system("python -m mindsearch.app --lang en --model_format internlm_silicon --search_engine TencentSearch &")
|
| 21 |
|
| 22 |
PLANNER_HISTORY = []
|
| 23 |
SEARCHER_HISTORY = []
|
|
|
|
| 310 |
clearBtn.click(rst_mem, None, [planner, searcher, node_count], queue=False)
|
| 311 |
|
| 312 |
demo.queue()
|
| 313 |
+
demo.launch()
|
gradio_agentchatbot/__pycache__/__init__.cpython-310.pyc
CHANGED
|
Binary files a/gradio_agentchatbot/__pycache__/__init__.cpython-310.pyc and b/gradio_agentchatbot/__pycache__/__init__.cpython-310.pyc differ
|
|
|
gradio_agentchatbot/__pycache__/agentchatbot.cpython-310.pyc
CHANGED
|
Binary files a/gradio_agentchatbot/__pycache__/agentchatbot.cpython-310.pyc and b/gradio_agentchatbot/__pycache__/agentchatbot.cpython-310.pyc differ
|
|
|
gradio_agentchatbot/__pycache__/utils.cpython-310.pyc
CHANGED
|
Binary files a/gradio_agentchatbot/__pycache__/utils.cpython-310.pyc and b/gradio_agentchatbot/__pycache__/utils.cpython-310.pyc differ
|
|
|
mindsearch/__pycache__/__init__.cpython-310.pyc
CHANGED
|
Binary files a/mindsearch/__pycache__/__init__.cpython-310.pyc and b/mindsearch/__pycache__/__init__.cpython-310.pyc differ
|
|
|
mindsearch/__pycache__/app.cpython-310.pyc
CHANGED
|
Binary files a/mindsearch/__pycache__/app.cpython-310.pyc and b/mindsearch/__pycache__/app.cpython-310.pyc differ
|
|
|
mindsearch/agent/__pycache__/__init__.cpython-310.pyc
CHANGED
|
Binary files a/mindsearch/agent/__pycache__/__init__.cpython-310.pyc and b/mindsearch/agent/__pycache__/__init__.cpython-310.pyc differ
|
|
|
mindsearch/agent/__pycache__/graph.cpython-310.pyc
CHANGED
|
Binary files a/mindsearch/agent/__pycache__/graph.cpython-310.pyc and b/mindsearch/agent/__pycache__/graph.cpython-310.pyc differ
|
|
|
mindsearch/agent/__pycache__/mindsearch_agent.cpython-310.pyc
CHANGED
|
Binary files a/mindsearch/agent/__pycache__/mindsearch_agent.cpython-310.pyc and b/mindsearch/agent/__pycache__/mindsearch_agent.cpython-310.pyc differ
|
|
|
mindsearch/agent/__pycache__/mindsearch_prompt.cpython-310.pyc
CHANGED
|
Binary files a/mindsearch/agent/__pycache__/mindsearch_prompt.cpython-310.pyc and b/mindsearch/agent/__pycache__/mindsearch_prompt.cpython-310.pyc differ
|
|
|
mindsearch/agent/__pycache__/models.cpython-310.pyc
CHANGED
|
Binary files a/mindsearch/agent/__pycache__/models.cpython-310.pyc and b/mindsearch/agent/__pycache__/models.cpython-310.pyc differ
|
|
|
mindsearch/agent/__pycache__/streaming.cpython-310.pyc
CHANGED
|
Binary files a/mindsearch/agent/__pycache__/streaming.cpython-310.pyc and b/mindsearch/agent/__pycache__/streaming.cpython-310.pyc differ
|
|
|