You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(init): correct Bedrock + LM Studio wizard schema
Bedrock prompts were producing a non-booting .env because the wizard
asked for BEDROCK_API_KEY but the config loader at
src/config/index.js:127 reads AWS_BEDROCK_API_KEY. The misleading "or
use IAM" hint also implied a SigV4 fallback that doesn't exist —
src/clients/databricks.js:1450 throws if the bearer token is missing.
LM Studio's default endpoint was http://localhost:1234/v1, but the
client at databricks.js:1329 appends /v1/chat/completions to whatever
endpoint is supplied. Result was a doubled /v1 in the request URL and
404 responses. Corrected to http://localhost:1234 to match the LM
Studio default and the maintainer's working .env.
Wizard now also collects AWS_BEDROCK_REGION and AWS_BEDROCK_MODEL_ID
when bedrock is picked, with the cross-region inference profile
(us.anthropic.claude-sonnet-4-5) as the default.
docs/init.md: corrects the providers table row and adds a Bedrock
setup subsection covering the bearer-token-vs-IAM nuance, the us./eu.
cross-region prefix, model-ID format, and tier syntax with concrete
examples for the Anthropic Claude family and Llama.
Docker image / labels bumped to 9.7.2.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: package.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "lynkr",
3
-
"version": "9.7.1",
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.",
0 commit comments