Spaces:
Running
Running
Commit ·
c5e7f6c
1
Parent(s): 7d4b523
Add .gitignore and .env.example
Browse filesCo-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
- .env.example +14 -0
- .gitignore +4 -0
.env.example
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Model to use (litellm format)
|
| 2 |
+
LH_MODEL=openrouter/qwen/qwen3-coder
|
| 3 |
+
|
| 4 |
+
# API keys (set at least one for your chosen provider)
|
| 5 |
+
# OPENROUTER_API_KEY=
|
| 6 |
+
# OPENAI_API_KEY=
|
| 7 |
+
# GEMINI_API_KEY=
|
| 8 |
+
|
| 9 |
+
# E2B sandbox
|
| 10 |
+
E2B_API_KEY=your-e2b-api-key
|
| 11 |
+
|
| 12 |
+
# Web app authentication
|
| 13 |
+
LH_ACCESS_TOKEN=your-secret-token
|
| 14 |
+
# LH_MAX_SESSION_COST=0.50
|
.gitignore
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
__pycache__/
|
| 2 |
+
*.pyc
|
| 3 |
+
.env
|
| 4 |
+
.venv/
|