feat: attended PR comments

This commit is contained in:
2026-02-24 22:14:29 +00:00
parent a3ba340224
commit b95bb72b24
4 changed files with 16 additions and 14 deletions

View File

@@ -35,6 +35,8 @@ class Settings(BaseSettings):
endpoint_domain: str
embedding_model: str = "gemini-embedding-001"
search_limit: int = 10
log_name: str = "va_agent_evaluation_logs"
log_level: str = "INFO"
@classmethod
def settings_customise_sources(
@@ -52,3 +54,7 @@ class Settings(BaseSettings):
YamlConfigSettingsSource(settings_cls),
file_secret_settings,
)
# Singleton instance of Settings
cfg = Settings.model_validate({})