Spaces:
Running
Running
| # ============================================================ | |
| # Data Cleaning OpenEnv — Environment Variables | |
| # Copy this file to .env and fill in your values. | |
| # Never commit your real .env to version control. | |
| # ============================================================ | |
| # LLM API endpoint (OpenAI-compatible). | |
| # Default points to OpenAI; swap for any compatible provider. | |
| API_BASE_URL=https://api.openai.com/v1 | |
| # Model identifier to use for baseline inference. | |
| # Examples: gpt-4o-mini, gpt-4o, mistralai/Mistral-7B-Instruct-v0.2 | |
| MODEL_NAME=gpt-4o-mini | |
| # API key for the LLM provider above. | |
| # For OpenAI: starts with sk-... | |
| # For HuggingFace Inference: starts with hf_... | |
| HF_TOKEN=your-api-key-here | |
| # Base URL of the running environment server. | |
| # Use http://localhost:8000 for local development, | |
| # or your HuggingFace Space URL for remote runs. | |
| ENV_URL=http://localhost:8000 | |