Skip to content

Commit 27a2d63

Browse files
authored
Change GEMINI_API_KEY to required field with description
1 parent a64afdd commit 27a2d63

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

packages/config/settings.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,10 @@ class Settings(BaseSettings):
101101
)
102102

103103
# Google Gemini Api Configuration
104-
GEMINI_API_KEY: Optional[str] = None
104+
GEMINI_API_KEY: str = Field(
105+
default="",
106+
description="Gemini API key"
107+
)
105108

106109
# OpenAI Configuration
107110
OPENAI_API_KEY: str = Field(

0 commit comments

Comments
 (0)