Merge pull request #119 from Madhuvod/gemini-model-change-o3-code

chore: updated gemini-2.0-flash model for vision agent
This commit is contained in:
Shubham Saboo 2025-02-15 16:29:44 -06:00 committed by GitHub
commit ff18845d83
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -21,7 +21,7 @@ An AI Powered Streamlit application that serves as your personal coding assistan
- 30-second execution timeout protection
#### Multi-Agent Architecture
- Vision Agent (Gemini-exp-1206) for image processing
- Vision Agent (Gemini-2.0-flash) for image processing
- Coding Agent (OpenAI- o3-mini) for solution generation
- Execution Agent (OpenAI) for code running and result analysis
- E2B Sandbox for secure code execution

View file

@ -34,7 +34,7 @@ def setup_sidebar() -> None:
def create_agents() -> tuple[Agent, Agent, Agent]:
vision_agent = Agent(
model=Gemini(id="gemini-exp-1206", api_key=st.session_state.gemini_key),
model=Gemini(id="gemini-2.0-flash", api_key=st.session_state.gemini_key),
markdown=True,
)