feat(providers): add Lynkr as a declarative OpenAI-compatible provider (#11372)

Co-authored-by: vishal veerareddy <vishalveera.reddy@servicenow.com>
Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Vishal Veera Reddy
2026-08-19 22:12:24 +00:00
committed by GitHub
parent ba2d868cff
commit 5e6b79fb96
2 changed files with 25 additions and 0 deletions
@@ -28,6 +28,7 @@ pub(crate) mod declarative_providers {
inception,
llama_swap,
lmstudio,
lynkr,
meta,
minimax,
mistral,
@@ -0,0 +1,24 @@
{
"name": "lynkr",
"engine": "openai",
"display_name": "Lynkr",
"description": "Self-hosted, OpenAI-compatible LLM gateway that adds tier routing, token compression, and semantic caching in front of any backend.",
"api_key_env": "LYNKR_API_KEY",
"base_url": "${LYNKR_HOST}/v1/chat/completions",
"env_vars": [
{
"name": "LYNKR_HOST",
"required": false,
"secret": false,
"primary": true,
"default": "http://localhost:8081",
"description": "Base URL of the Lynkr gateway (default: http://localhost:8081)"
}
],
"dynamic_models": true,
"models": [],
"supports_streaming": true,
"requires_auth": false,
"skip_canonical_filtering": true,
"model_doc_link": "https://github.com/Fast-Editor/Lynkr"
}