Initial commit

This commit is contained in:
2026-04-06 11:46:38 +00:00
commit 4c5041cade
26 changed files with 809 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
{
"version": 1,
"profiles": {
"openrouter:default": {
"type": "api_key",
"provider": "openrouter",
"key": "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"
}
},
"lastGood": {
"openrouter": "openrouter:default"
},
"usageStats": {
"openrouter:default": {
"errorCount": 0,
"lastUsed": 1775322833462
}
}
}

View File

@@ -0,0 +1,61 @@
{
"providers": {
"openrouter": {
"baseUrl": "https://openrouter.ai/api/v1",
"api": "openai-completions",
"models": [
{
"id": "auto",
"name": "OpenRouter Auto",
"reasoning": false,
"input": [
"text",
"image"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 200000,
"maxTokens": 8192
},
{
"id": "openrouter/hunter-alpha",
"name": "Hunter Alpha",
"reasoning": true,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 1048576,
"maxTokens": 65536
},
{
"id": "openrouter/healer-alpha",
"name": "Healer Alpha",
"reasoning": true,
"input": [
"text",
"image"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 262144,
"maxTokens": 65536
}
],
"apiKey": "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"
}
}
}