Find answers from the community

Updated last year

Hey can someone please help me real

At a glance
Hey can someone please help me real quick, agent uses tools normally when model is gpt-4 but it never use tools when I use gpt-3.5-turbo-0613:
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
L
T
T
6 comments
It does have the same function calling features, but it's also less smart. Maybe it's deciding not to use tools for the messages you are sending?

Also side note, setting llm = OpenAI(model="") is probably not what you want to be doing πŸ™‚
yes I'm using this: llm = OpenAI(model="gpt-3.5-turbo-0613"), but it doesn't seem to use the tool at all.. Weird behavior?
but you can confirm 3.5-turbo-0613 agent can use tools right?
Yeah it can
Attachment
image.png
okay, thank you for the quick responses
Add a reply
Sign up and join the conversation on Discord