We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc4f921 commit 8dbd467Copy full SHA for 8dbd467
1 file changed
README.md
@@ -107,12 +107,21 @@ packages/
107
Set these variables in `apps/api/.env`:
108
109
```bash
110
+STACKFORGE_PROVIDER=openrouter
111
OPENROUTER_API_KEY=your_key_here
112
OPENROUTER_ENDPOINT=https://openrouter.ai/api/v1/chat/completions
113
OPENROUTER_APP_NAME=stackforge-api
114
OPENROUTER_APP_URL=http://localhost:3001
115
```
116
117
+`STACKFORGE_PROVIDER` supports:
118
+- `openrouter`: forces real LLM execution (requires `OPENROUTER_API_KEY`)
119
+- `mock`: forces deterministic offline agent responses
120
+- omitted/`auto`: uses `openrouter` when API key is present, otherwise `mock`
121
+
122
+Runtime/provider health is exposed at:
123
+- `GET /api/runtime`
124
125
---
126
127
## 📉 Token Tuning Guide
0 commit comments