Spaces:
Runtime error
Runtime error
Salvatore Rossitto
commited on
Commit
·
9778c3b
1
Parent(s):
6d44433
some minor ui fix
Browse files- RBotReloaded.py +2 -2
- start_agent.bat +1 -1
RBotReloaded.py
CHANGED
@@ -274,10 +274,10 @@ AI: Calculator("factorial(5)")
|
|
274 |
SYS: Today is {str(datetime.now().date())},
|
275 |
SYS: You are {AI_NAME} a smart and helpful AI assistant with access to external tools and knowledge.
|
276 |
{formatted_history}
|
277 |
-
|
|
|
278 |
{self.tools_prompt()}
|
279 |
|
280 |
-
USER: {input}
|
281 |
AI:
|
282 |
"""
|
283 |
observations = []
|
|
|
274 |
SYS: Today is {str(datetime.now().date())},
|
275 |
SYS: You are {AI_NAME} a smart and helpful AI assistant with access to external tools and knowledge.
|
276 |
{formatted_history}
|
277 |
+
USER: {input}
|
278 |
+
SYS: Please reply last user message directly or invoking a valid action from the following list:
|
279 |
{self.tools_prompt()}
|
280 |
|
|
|
281 |
AI:
|
282 |
"""
|
283 |
observations = []
|
start_agent.bat
CHANGED
@@ -13,7 +13,7 @@ rem Activate the virtual environment
|
|
13 |
call %ENV_NAME%\Scripts\activate
|
14 |
|
15 |
rem Install the required packages from requirements.txt
|
16 |
-
python -m pip install
|
17 |
|
18 |
rem Run your Streamlit application
|
19 |
python -m streamlit run agent_llama_ui.py
|
|
|
13 |
call %ENV_NAME%\Scripts\activate
|
14 |
|
15 |
rem Install the required packages from requirements.txt
|
16 |
+
python -m pip install -r requirements.txt
|
17 |
|
18 |
rem Run your Streamlit application
|
19 |
python -m streamlit run agent_llama_ui.py
|