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:
commit
ff18845d83
2 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue