llm = OpenAI(model="")
context_agent = OpenAIAgent.from_tools(
qa_prompt=qa_prompt,
tools=tools,
max_function_calls=3,
llm=llm,
verbose=True,
)
I thought gpt-3.5-turbo-0613 should have function calling features, why does this happen? Thanks
llm = OpenAI(model="")
is probably not what you want to be doing π