decomposer: scaffold crucible-agent-build-fastapi-endpoint
Some checks are pending
ci / validate (push) Has started running
Some checks are pending
ci / validate (push) Has started running
This commit is contained in:
@@ -1,18 +1 @@
|
|||||||
from functools import lru_cache
|
"""Typed settings."""
|
||||||
|
|
||||||
from pydantic import Field
|
|
||||||
from pydantic_settings import BaseSettings, SettingsConfigDict
|
|
||||||
|
|
||||||
|
|
||||||
class Settings(BaseSettings):
|
|
||||||
model_config = SettingsConfigDict(env_prefix="MONITOR_", extra="ignore")
|
|
||||||
|
|
||||||
request_timeout_seconds: float = Field(default=5.0, gt=0, le=30)
|
|
||||||
connect_timeout_seconds: float = Field(default=2.0, gt=0, le=10)
|
|
||||||
max_redirects: int = Field(default=5, ge=0, le=10)
|
|
||||||
log_level: str = "INFO"
|
|
||||||
|
|
||||||
|
|
||||||
@lru_cache
|
|
||||||
def get_settings() -> Settings:
|
|
||||||
return Settings()
|
|
||||||
|
|||||||
Reference in New Issue
Block a user