-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
fix: gemini agent #1912
fix: gemini agent #1912
Conversation
@@ -68,7 +68,7 @@ def get_agents(): | |||
|
|||
agent_list.append( | |||
AgentGetResponse( | |||
agent_id=agent.agent_id, | |||
agent_id=agent.agent_id if agent.agent_id else None, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This shouldn't be necessary?
@@ -73,7 +73,7 @@ async def get_agents(): | |||
|
|||
agent_list.append( | |||
AgentGetResponse( | |||
agent_id=agent.agent_id, | |||
agent_id=agent.agent_id if agent.agent_id else None, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This shouldn't be necessary
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM after @dirkbrnd's comments are resolved
…into fix/gemini-agent
Description
Added agent id to gemini agent
Made agent id optional
Fixes # (issue)
Type of change
Please check the options that are relevant:
Checklist
Additional Notes
Include any deployment notes, performance implications, or other relevant information: