File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change 11from pydantic_settings import BaseSettings
22from dotenv import load_dotenv
33from pydantic import field_validator
4+ from typing import Optional
45
56load_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 = ""
You can’t perform that action at this time.
0 commit comments