File size: 820 Bytes
4381a41 3ee7765 4381a41 381e5e2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | # Set these as Space secrets/variables in Hugging Face (Settings > Variables and secrets).
# Never commit a real .env file.
# The chat completions endpoint for your Inference Port API.
# CONFIRM THIS IS STILL CORRECT before deploying - it can move.
INFERENCE_API_URL=https://sharktide-lightning.hf.space/v1/chat/completions
# Secret - set this in Space secrets, not in the repo.
INFERENCE_API_KEY=
# Model id served by that endpoint. 'lightning' is the auto-router (recommended).
# Override models can be configured in the InferencePort console.
INFERENCE_MODEL=lightning
# Optional: name Forge uses for itself in the UI and its own system prompt.
AGENT_NAME=Forge
# Set to "true" to use /data/forge-tools for tool persistence.
# Requires persistent storage enabled in Space settings.
# USE_PERSISTENT_STORAGE=true
|