Skip to content

Commit 8badfc0

Browse files
committed
[chore]: update gemini model and set rabbit mq as optional
1 parent f551a30 commit 8badfc0

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

backend/app/core/config/settings.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
from pydantic_settings import BaseSettings
22
from dotenv import load_dotenv
33
from pydantic import field_validator
4+
from typing import Optional
45

56
load_dotenv()
67

@@ -26,14 +27,14 @@ class Settings(BaseSettings):
2627
langsmith_project: str = "DevR_AI"
2728

2829
# Agent Configuration
29-
devrel_agent_model: str = "gemini-2.0-flash"
30-
github_agent_model: str = "gemini-2.0-flash"
31-
classification_agent_model: str = "gemini-1.5-flash"
30+
devrel_agent_model: str = "gemini-2.5-flash"
31+
github_agent_model: str = "gemini-2.5-flash"
32+
classification_agent_model: str = "gemini-2.0-flash"
3233
agent_timeout: int = 30
3334
max_retries: int = 3
34-
35+
3536
# RabbitMQ configuration
36-
rabbitmq_url: str = ""
37+
rabbitmq_url: Optional[str] = None
3738

3839
# Backend URL
3940
backend_url: str = ""

0 commit comments

Comments
 (0)