# OpenAI API Configuration # Get your API key from: https://platform.openai.com/api-keys OPENAI_API_KEY=your_openai_api_key_here # JWT Secret for Authentication (in production) # Generate a secure random string for production use JWT_SECRET=your_jwt_secret_key_here # FastAPI Configuration (if running separate backend) FASTAPI_HOST=0.0.0.0 FASTAPI_PORT=8000 # Streamlit Configuration (if running separately) STREAMLIT_HOST=0.0.0.0 STREAMLIT_PORT=8501 # Vector Store Configuration # Directory where ChromaDB will store embeddings CHROMA_PERSIST_DIRECTORY=./chroma_db # Environment # Options: development, staging, production ENVIRONMENT=development # Optional: Hugging Face Token (for additional models) # HF_TOKEN=your_hugging_face_token_here