from core_shared import ServiceSettings class TeamServiceSettings(ServiceSettings): service_name: str = "team-service" service_port: int = 8009 database_url: str = "sqlite:///./team_service.db" agent_service_url: str = "http://127.0.0.1:8007" agent_service_timeout_seconds: float = 30.0 worker_poll_interval_seconds: float = 1.0 worker_lease_seconds: int = 300 worker_max_idle_cycles: int | None = None worker_dry_run: bool = True