-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathmodels.json
More file actions
36 lines (36 loc) · 991 Bytes
/
models.json
File metadata and controls
36 lines (36 loc) · 991 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"providers": {
"lmstudio": {
"baseUrl": "http://192.168.1.203:1234",
"api": "anthropic-messages",
"apiKey": "lm-studio",
"models": [
{
"id": "google/gemma-4-26b-a4b-it",
"name": "Gemma 4 26B A4B (LM Studio)",
"reasoning": false,
"input": ["text", "image"],
"contextWindow": 128000,
"maxTokens": 8192,
"cost": { "input": 0, "output": 0, "cacheRead": 0, "cacheWrite": 0 }
}
]
},
"openrouter": {
"baseUrl": "https://openrouter.ai/api",
"api": "openai-chat",
"apiKeyEnv": "OPENROUTER_API_KEY",
"models": [
{
"id": "poolside/laguna-m.1:free",
"name": "Poolside Laguna M.1 (free)",
"reasoning": true,
"input": ["text"],
"contextWindow": 131072,
"maxTokens": 8192,
"cost": { "input": 0, "output": 0, "cacheRead": 0, "cacheWrite": 0 }
}
]
}
}
}