Desktop tools
Continue
Continue.dev VSCode / JetBrains extension config.
Continue
Continue is a config-file-driven VSCode / JetBrains extension. Edit
~/.continue/config.json to add Token Harbor.
config.json
{
"models": [
{
"title": "Token Harbor",
"provider": "openai",
"model": "gpt-5",
"apiBase": "https://tokenharbor.ai/v1",
"apiKey": "thk_live_PASTE_YOURS_HERE"
}
]
}
Multiple models
Duplicate the block with different model ids. Continue will show
each as a separate dropdown option:
{
"models": [
{
"title": "GPT-5",
"provider": "openai",
"model": "gpt-5",
"apiBase": "https://tokenharbor.ai/v1",
"apiKey": "thk_live_…"
},
{
"title": "Claude Sonnet 4.5",
"provider": "openai",
"model": "claude-sonnet-4-5",
"apiBase": "https://tokenharbor.ai/v1",
"apiKey": "thk_live_…"
}
]
}
Notes
- Continue auto-reloads the config when you save. No extension restart needed.
- Provider must be
"openai"(not"custom"); Token Harbor speaks OpenAI Chat Completions exactly.