Spaces:
Running
Running
File size: 887 Bytes
7e3d2d7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # ============================================================
# 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
|