Update prompt #11

Merged
A8065384 merged 4 commits from prompt into main 2026-02-25 16:45:51 +00:00
2 changed files with 2 additions and 1 deletions
Showing only changes of commit 8cc2f58ab4 - Show all commits

View File

@@ -27,4 +27,4 @@ COPY config.yaml ./
ENV PATH="/app/.venv/bin:$PATH"
CMD ["uvicorn", "va_agent.server:app", "--host", "0.0.0.0"]
CMD ["uvicorn", "va_agent.server:app", "--host", "0.0.0.0", "--port", "8080"]

View File

@@ -32,6 +32,7 @@ class AgentSettings(BaseSettings):
model_config = SettingsConfigDict(
yaml_file=CONFIG_FILE_PATH,
extra="ignore", # Ignore extra fields from config.yaml
env_file=".env"
)
@classmethod