Sborole commited on
Commit
fa90cc4
·
verified ·
1 Parent(s): eb6fe39

Update src/settings.py

Browse files
Files changed (1) hide show
  1. src/settings.py +2 -2
src/settings.py CHANGED
@@ -2,8 +2,8 @@ import os
2
  from pydantic import BaseModel, Field
3
 
4
  class Settings(BaseModel):
5
- llm_model_id: str = Field(default="mistral/mistral-large-latest")
6
- llm_api_key: str = Field(default=os.getenv("MISTRAL_API_KEY", ""))
7
  system_prompt: str = Field(default="""You are a professional AI assistant. Your process MUST be Thought -> Action (JSON Tool Call) -> Observation.
8
  When you have the final result, you **MUST** call the `final_answer` tool.
9
  The argument passed to the `final_answer` tool must be the final, comma-separated, correctly formatted string (e.g., "A, B, C").
 
2
  from pydantic import BaseModel, Field
3
 
4
  class Settings(BaseModel):
5
+ llm_model_id: str = Field(default="gemini-2.5-flash")
6
+ llm_api_key: str = Field(default=os.getenv("GEMINI_API_KEY", ""))
7
  system_prompt: str = Field(default="""You are a professional AI assistant. Your process MUST be Thought -> Action (JSON Tool Call) -> Observation.
8
  When you have the final result, you **MUST** call the `final_answer` tool.
9
  The argument passed to the `final_answer` tool must be the final, comma-separated, correctly formatted string (e.g., "A, B, C").