| # Insta-AutoApp Environment Configuration | |
| # Copy this file to .env and fill in your values | |
| # ============================================================================= | |
| # REQUIRED: HuggingFace API Token | |
| # ============================================================================= | |
| # Get your token from: https://huggingface.co/settings/tokens | |
| # Required for LLM inference (follow-up questions and triage generation) | |
| HF_API_TOKEN=your_huggingface_token_here | |
| # ============================================================================= | |
| # OPTIONAL: Model Configuration | |
| # ============================================================================= | |
| # Default model for inference (instruction-tuned model recommended) | |
| # HF_MODEL_ID=Qwen/Qwen2.5-72B-Instruct | |
| # ============================================================================= | |
| # OPTIONAL: Retrieval Configuration | |
| # ============================================================================= | |
| # Number of chunks to retrieve (default: 5) | |
| # TOP_K=5 | |