Spaces:
Sleeping
Sleeping
pwilczewski
commited on
Commit
·
bcc9a7a
1
Parent(s):
27bb768
fake change
Browse files
app.py
CHANGED
@@ -51,6 +51,7 @@ def create_agent(llm: ChatOpenAI, tools: list, task: str):
|
|
51 |
]
|
52 |
)
|
53 |
agent = create_openai_tools_agent(llm, tools, prompt)
|
|
|
54 |
executor = AgentExecutor(agent=agent, tools=tools, verbose=True, return_intermediate_steps=True)
|
55 |
return executor
|
56 |
|
|
|
51 |
]
|
52 |
)
|
53 |
agent = create_openai_tools_agent(llm, tools, prompt)
|
54 |
+
# for debugging
|
55 |
executor = AgentExecutor(agent=agent, tools=tools, verbose=True, return_intermediate_steps=True)
|
56 |
return executor
|
57 |
|