Hi, how to stop an agent from making up a "nice" answer and returning just a rough response from the tool? For example, if I use the Image generator tool, it gives the right output but the anwer is always verbose:
from llama_index.agent.openai import OpenAIAgentWorker, OpenAIAgent
# Import and initialize our tool spec
from .image_tool_spec import TextToImageToolSpec
text_to_image_spec = TextToImageToolSpec()
tools = text_to_image_spec.to_tool_list()
# Create the Agent with our tools
agent = OpenAIAgent.from_tools(tools, verbose=False)
print(agent.chat("show an of a beautiful beach with a palm tree at sunset"))
Thanks!