# Copy this file to .env and fill in your actual values

# OpenAI API Configuration
OPENAI_API_KEY=your_openai_api_key_here

# MySQL Database Configuration
MYSQL_HOST=localhost
MYSQL_PORT=3306
MYSQL_DATABASE=programasweights
MYSQL_USER=root
MYSQL_PASSWORD=your_mysql_password_here

# Model Paths
CHECKPOINT_DIR=../../outputs/prefix_kv/checkpoint
COMPILED_MODELS_DIR=./compiled_models
TEMP_DIR=./temp

# Cache Control (set to false to disable caching for development)
ENABLE_COMPILATION_CACHE=true
ENABLE_GPT_CACHE=true
ENABLE_EXECUTION_CACHE=true

# Development Settings
DEBUG=true