chuckfinca Claude Opus 4.6 (1M context) commited on
Commit
c5e7f6c
·
1 Parent(s): 7d4b523

Add .gitignore and .env.example

Browse files

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

Files changed (2) hide show
  1. .env.example +14 -0
  2. .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/