11 lines
248 B
Python
11 lines
248 B
Python
from pydantic_settings import BaseSettings
|
|
|
|
|
|
class Settings(BaseSettings):
|
|
anthropic_api_key: str
|
|
model: str = "claude-sonnet-4-5-20250929"
|
|
safedir: str = "./workspace"
|
|
max_tokens: int = 500
|
|
|
|
model_config = {"env_file": ".env"}
|