Workflow examples for google gemini models #513
Answered
by
saqadri
networkandcode
asked this question in
Q&A
-
|
Are there any multi agent example with gemini models.. I see the examples contain openai references, just wondering if that work with gemini as it has open ai compatible API? |
Beta Was this translation helpful? Give feedback.
Answered by
saqadri
Sep 19, 2025
Replies: 1 comment 2 replies
-
|
@networkandcode yes they should all work with gemini as well! You can just replace OpenAIAugmentedLLM references with GoogleAugmentedLLM and configure your google gemini API keys and the same examples will just work. Here's an example how to configure google gemini settings: Let me know if you need any help! |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@networkandcode I see what you mean! The Router workflow has two specific helpers for Anthropic and OpenAI, but they are purely syntactic sugar. You can very easily use Router workflow with Google Gemini this way:
BTW there's also https://github.com/lastmile-ai/mcp-agent/blob/main/src/mcp_agent/workflows/factory.py#L119 which lets you construct things more easily. I also just realized thanks to your que…