Hello, my today problem is:
I want to use chainlit to create nice looking chatbot, but i have two problems:
- I want to use agents because of my data imported inside tools:
agent_executor = AgentExecutor(agent=agent, tools=tools, memory=memory, verbose=False,
return_intermediate_steps=True, max_context_length=14000)
But my context lenght is to long when i asks questions because of returning every step.
I thought its because return_intermediate_steps=True but I cant delete it because it generates error and I cant make it on False because it generates error to. What I can do to don’t show this steps in answer ?