Skip to content
| Marketplace
Sign in
Visual Studio Code>AI>Kong-chat-bridgeNew to Visual Studio Code? Get it now.
Kong-chat-bridge

Kong-chat-bridge

KongKong

|
7 installs
| (0) | Free
Connect VS Code chat model requests to self-hosted or custom model endpoints through Kong API gateway.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Kong-chat-bridge

Kong-chat-bridge lets VS Code route chat-model requests to model endpoints you control. It is designed for Kong API gateway deployments and other OpenAI-compatible, Anthropic, Gemini, or Ollama-style backends.

This extension is independent software. It is not affiliated with, endorsed by, or sponsored by Microsoft, GitHub, OpenAI, Anthropic, Google, or any upstream extension project.

Features

  • Configure multiple model providers with separate API keys.
  • Use OpenAI Chat Completions, OpenAI Responses, OpenAI Responses over WebSocket, Anthropic Messages, Gemini, and Ollama-style APIs.
  • Store model-specific settings such as base URL, context length, output tokens, temperature, reasoning effort, and custom headers.
  • Generate Git commit messages from the Source Control view.
  • Show token usage and open configuration from the status bar.
  • Import and export provider configuration.

Quick Start

  1. Open the command palette.
  2. Run Kong-chat-bridge: Open Configuration UI.
  3. Add a provider with a base URL and API key.
  4. Add one or more model entries.
  5. Select a configured model from VS Code's chat model picker.

Example settings:

"kong-chat-bridge.baseUrl": "https://api.example.com/v1",
"kong-chat-bridge.models": [
	{
		"id": "gpt-5.5",
		"owned_by": "kong",
		"family": "gpt-5.5",
		"apiMode": "openai-responses-ws",
		"context_length": 256000,
		"max_completion_tokens": 8192
	}
]

Important Settings

  • kong-chat-bridge.baseUrl: Global provider base URL.
  • kong-chat-bridge.models: Model list shown through the VS Code model picker.
  • kong-chat-bridge.retry: Retry policy for transient HTTP failures.
  • kong-chat-bridge.delay: Delay between requests.
  • kong-chat-bridge.commitLanguage: Output language for generated commit messages.
  • kong-chat-bridge.readFileLines: Default line budget for file-reading tool results.

Model Family

Set family when the host should treat a custom endpoint like a known model family. For example:

{
	"id": "gpt-5.5",
	"family": "gpt-5.5"
}

If family is omitted, the extension tries to infer common model families from the model id and otherwise uses oai-compatible.

Notes

  • API keys are stored with VS Code SecretStorage.
  • Provider-specific keys use kong-chat-bridge.apiKey.<provider>.
  • The WebSocket Responses mode is intended for Kong API gateway-style upstreams that support per-run session reuse.
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2026 Microsoft