Sborole commited on
Commit
5191a0d
·
verified ·
1 Parent(s): 6d84954

Update src/settings.py

Browse files
Files changed (1) hide show
  1. src/settings.py +1 -1
src/settings.py CHANGED
@@ -3,7 +3,7 @@ from pydantic import BaseModel, Field
3
 
4
  class Settings(BaseModel):
5
  llm_model_id: str = Field(default="gemini/gemini-2.5-flash")
6
- llm_api_key: str = Field(default=os.getenv("GOOGLE_API_KEY", "AIzaSyC-7Q2AE86XOhlhAeI8U9JrIHK5czYdfWg"))
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").
 
3
 
4
  class Settings(BaseModel):
5
  llm_model_id: str = Field(default="gemini/gemini-2.5-flash")
6
+ llm_api_key: str = Field(default=os.getenv("GOOGLE_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").