File size: 524 Bytes
e02dee9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | # Environment variables for the lightweight LLM service
# Copy this to .env for local development
# Model configuration
MODEL_NAME=microsoft/DialoGPT-small
MAX_NEW_TOKENS=256
# Server configuration
PORT=7860
# MCP Integration (optional)
# Set this to your MCP server URL when available
# MCP_SERVER_URL=https://your-mcp-server.hf.space
# Example configurations:
# MCP_SERVER_URL=https://prestashop-mcp-server.hf.space
# MCP_SERVER_URL=http://localhost:8081
# Development settings
# ENVIRONMENT=development
# DEBUG=true
|