chore(infra): align bot runtime env configuration

This commit is contained in:
2026-03-11 02:43:28 +04:00
parent 43285e590b
commit 3c0a53981a
5 changed files with 106 additions and 1 deletions

View File

@@ -11,7 +11,15 @@ mini_app_image = "europe-west1-docker.pkg.dev/my-gcp-project/household-bot/mini
database_url_secret_id = "database-url"
telegram_bot_token_secret_id = "telegram-bot-token"
openai_api_key_secret_id = "openai-api-key"
bot_parser_model = "gpt-4.1-mini"
bot_parser_model = "gpt-4.1-mini"
bot_purchase_parser_model = "gpt-5-mini"
bot_assistant_model = "gpt-5-mini"
bot_assistant_timeout_ms = 15000
bot_assistant_memory_max_turns = 12
bot_assistant_rate_limit_burst = 5
bot_assistant_rate_limit_burst_window_ms = 60000
bot_assistant_rate_limit_rolling = 50
bot_assistant_rate_limit_rolling_window_ms = 86400000
bot_mini_app_allowed_origins = [
"https://household-dev-mini-app-abc123-ew.a.run.app"
]