I create an agent using:
zero_shot_agent = initialize_agent(
agent="zero-shot-react-description",
tools=tools,
llm=llm,
verbose=True,
max_iterations=3
)
I now want to customize the content of the default prompt used by the agent.
I wasn't able to locate any documented input parameters to initialize_agent() to do so.
Is there a way to accomplish this ?
I create an agent using:
I now want to customize the content of the default prompt used by the agent.
I wasn't able to locate any documented input parameters to initialize_agent() to do so.
Is there a way to accomplish this ?