Update main.py
Browse files
main.py
CHANGED
|
@@ -13,7 +13,7 @@ from langchain.agents import load_tools
|
|
| 13 |
from langchain.agents import initialize_agent
|
| 14 |
from langchain.agents import AgentType
|
| 15 |
|
| 16 |
-
def run_something()
|
| 17 |
tools = load_tools(["python_repl"])
|
| 18 |
responses = ["Action: Python REPL\nAction Input: print(2 + 2)", "Final Answer: 4"]
|
| 19 |
llm = FakeListLLM(responses=responses)
|
|
|
|
| 13 |
from langchain.agents import initialize_agent
|
| 14 |
from langchain.agents import AgentType
|
| 15 |
|
| 16 |
+
def run_something():
|
| 17 |
tools = load_tools(["python_repl"])
|
| 18 |
responses = ["Action: Python REPL\nAction Input: print(2 + 2)", "Final Answer: 4"]
|
| 19 |
llm = FakeListLLM(responses=responses)
|