| # Production environment configuration | |
| app: | |
| debug: false | |
| environment: "production" | |
| debug_prompts: false | |
| # AWS S3 Configuration - use production index | |
| aws: | |
| prefix_retriever: "Save_Index_Ivan/" | |
| local_dir: "Save_Index_Ivan" | |
| # Session Management - optimized for production | |
| session: | |
| timeout_minutes: 30 | |
| cleanup_interval_minutes: 5 | |
| max_sessions: 1000 | |
| storage_type: "memory" | |
| # Logging - production level | |
| logging: | |
| level: "INFO" | |
| console: true | |
| file: "logs/app.log" | |
| # Gradio - production settings | |
| gradio: | |
| server_name: "0.0.0.0" | |
| server_port: 7860 | |
| share: false | |
| show_error: false | |
| ssr_mode: true | |