Client Compatibility
The tools, frameworks, and SDKs below are verified against SeaLink. Each entry lists supported endpoints, model capabilities, known limits, and sample code. New tools are added continuously.
Continue.dev
ai-ideLeading open-source AI code assistant. Configure via config.json for both chat and autocomplete.
Endpoint
/v1/chat/completions (via OpenAI provider)
Streaming
Supported for both chat and autocomplete
Tool use
Configurable — Continue supports @-mentions and slash commands natively
Limits
tabAutocompleteModel must be configured separately from the chat models array. Anthropic models use the 'anthropic' provider key.
Example
# ~/.continue/config.json
{
"models": [{
"title": "SeaLink GPT-4o Mini",
"provider": "openai",
"model": "gpt-4o-mini",
"apiBase": "https://test.sealink.io/v1",
"apiKey": "<your-sealink-key>"
}],
"tabAutocompleteModel": {
"title": "SeaLink Autocomplete",
"provider": "openai",
"model": "gpt-4o-mini",
"apiBase": "https://test.sealink.io/v1",
"apiKey": "<your-sealink-key>"
}
}n8n
low-codeUse SeaLink with n8n's OpenAI node. Any chat model can power automation workflows — set base URL and key in the OpenAI credentials.
Endpoint
/v1/chat/completions (via OpenAI node)
Streaming
Supported in n8n OpenAI node streaming mode
Tool use
n8n handles tools via its own node system; model tool calling optional
Limits
n8n OpenAI node feature set varies by version. Some advanced parameters (logprobs, n) may not be forwarded.
Example
# n8n → Credentials → OpenAI API
# Set:
# API Base URL: https://test.sealink.io/v1
# API Key: <your-sealink-key>
#
# Use the "OpenAI" node in any workflow.Don't see your tool?
SeaLink provides OpenAI-compatible and Anthropic-compatible endpoints. Tools with custom base URL support can usually connect, but production use should be verified with real requests against your target model. Tell us what tool you use and we'll verify it with real traffic and update this page.