-
Notifications
You must be signed in to change notification settings - Fork 953
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for Gemini Flash #106
Comments
Should work via OpenAI compatibility. See #110 for examples. |
it works but only if no tools or handsoff, but the output is not using the tool "The available tools lack the necessary functionality to get weather information. I need more information or different tools to answer your question." ` @function_tool gemini_agent = Agent( model="gpt-3.5-turbo",) result = await Runner.run(gemini_agent, input="what is the weather in tokyo?") ` |
It looks not working with tool. It throws 400 error.
The error is
If I remove the tools argument to
|
@mocheng @dominicdev do you know what specifically about the tools is wrong? I'm happy to fix, but not super familiar with the gemini openai integration. |
I tested on anthropic/together ai and tools worked fine |
Maybe related to this problem: BerriAI/litellm#8351 Gemini doesn't like |
I just tested this with gemini and it worked fine: https://github.com/openai/openai-agents-python/blob/main/examples/model_providers/custom_example_global.py |
@rm-openai I figured out what went wrong. In my previous code snippet, the tool missed typing.
It works after changing to be like this:
|
This issue is stale because it has been open for 7 days with no activity. |
I'm having a bit of an odd experience with this on my end. If I run the code 10 times it will work maybe 2-3 times out of 10 (i.e. it calls the tool and returns a response), and the rest of the time it doesn't call the tool and hallucinates. Have tried with flash-2.0 and 2.5-pro. I also find that if I have multiple tools available it almost never calls more than one tool, even if there is strong logical basis to call multiple tools. I looked this up and it appears to be a common complaint with Gemini. One of the suggestions to improve this is to set the config var "function_calling_config": {"mode": "any"}. https://ai.google.dev/gemini-api/docs/function-calling?example=meeting#single-turn-any-mode I wonder if there's any way to enforce that configuration directly from the Agents SDK, or whether it just uses the defaults? |
@jaijuneja From the gemini docs, it seems like
The equivalent in the Agents SDK is to set |
Are the latest Gemini models supported out of box?
The text was updated successfully, but these errors were encountered: