lynkr 9.7.1 → 9.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/lynkr-init.js +10 -4
- package/package.json +1 -1
package/bin/lynkr-init.js
CHANGED
|
@@ -55,7 +55,7 @@ const PROVIDERS = {
|
|
|
55
55
|
local: true,
|
|
56
56
|
creds: [],
|
|
57
57
|
extras: [
|
|
58
|
-
{ key: 'LMSTUDIO_ENDPOINT', label: 'endpoint', default: 'http://localhost:1234
|
|
58
|
+
{ key: 'LMSTUDIO_ENDPOINT', label: 'endpoint', default: 'http://localhost:1234' },
|
|
59
59
|
],
|
|
60
60
|
defaultModel: 'qwen2.5-coder',
|
|
61
61
|
},
|
|
@@ -112,10 +112,16 @@ const PROVIDERS = {
|
|
|
112
112
|
label: 'AWS Bedrock',
|
|
113
113
|
local: false,
|
|
114
114
|
creds: [
|
|
115
|
-
|
|
115
|
+
// Bearer token from AWS Console → Bedrock → API Keys. The Bedrock client
|
|
116
|
+
// (src/clients/databricks.js:1450) requires this key and does NOT fall
|
|
117
|
+
// back to IAM/SigV4 — common misconception worth being explicit about.
|
|
118
|
+
{ key: 'AWS_BEDROCK_API_KEY', label: 'AWS Bedrock API key (Bearer token from Bedrock console)', secret: true },
|
|
116
119
|
],
|
|
117
|
-
extras: [
|
|
118
|
-
|
|
120
|
+
extras: [
|
|
121
|
+
{ key: 'AWS_BEDROCK_REGION', label: 'AWS region', default: 'us-east-1' },
|
|
122
|
+
{ key: 'AWS_BEDROCK_MODEL_ID', label: 'Default model ID', default: 'us.anthropic.claude-sonnet-4-5-20250929-v1:0' },
|
|
123
|
+
],
|
|
124
|
+
defaultModel: 'us.anthropic.claude-sonnet-4-5-20250929-v1:0',
|
|
119
125
|
},
|
|
120
126
|
vertex: {
|
|
121
127
|
label: 'Google Vertex AI',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lynkr",
|
|
3
|
-
"version": "9.7.
|
|
3
|
+
"version": "9.7.2",
|
|
4
4
|
"description": "Self-hosted LLM gateway and tier-routing proxy for Claude Code, Cursor, and Codex. Routes across Ollama, AWS Bedrock, OpenRouter, Databricks, Azure OpenAI, llama.cpp, and LM Studio with prompt caching, MCP tools, and 60-80% cost savings.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|