Skip to content

Commit

Permalink
Changed default model to gemma2:9b
Browse files Browse the repository at this point in the history
  • Loading branch information
antoninoLorenzo committed Aug 8, 2024
1 parent f9f3585 commit fda14a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
# --- Get AI-OPS Settings
class AgentSettings(BaseSettings):
"""Setup for AI Agent"""
MODEL: str = os.environ.get('MODEL', 'gemma:7b')
MODEL: str = os.environ.get('MODEL', 'gemma2:9b')
ENDPOINT: str = os.environ.get('ENDPOINT', 'http://localhost:11434')
PROVIDER: str = os.environ.get('PROVIDER', 'ollama')
PROVIDER_KEY: str = os.environ.get('PROVIDER_KEY', '')
Expand Down

0 comments on commit fda14a4

Please sign in to comment.