Spaces:
Sleeping
Sleeping
Update src/settings.py
Browse files- 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", "
|
| 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").
|