You can get an API key from
app.tensorix.ai.
Chat Model
We recommend configuring deepseek/deepseek-chat-v3.1 as your chat model.- YAML
- JSON
config.yaml
Autocomplete Model
- YAML
- JSON
config.yaml
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Configure Tensorix with Continue to access DeepSeek, Llama, Qwen, GLM, and other models through a single OpenAI-compatible API gateway
name: My Config
version: 0.0.1
schema: v1
models:
- name: DeepSeek Chat
provider: tensorix
model: deepseek/deepseek-chat-v3.1
apiKey: <YOUR_TENSORIX_API_KEY>
roles:
- chat
{
"models": [
{
"title": "DeepSeek Chat",
"provider": "tensorix",
"model": "deepseek/deepseek-chat-v3.1",
"apiKey": "<YOUR_TENSORIX_API_KEY>"
}
]
}
name: My Config
version: 0.0.1
schema: v1
models:
- name: DeepSeek Chat
provider: tensorix
model: deepseek/deepseek-chat-v3.1
apiKey: <YOUR_TENSORIX_API_KEY>
roles:
- autocomplete
{
"models": [
{
"title": "DeepSeek Chat",
"provider": "tensorix",
"model": "deepseek/deepseek-chat-v3.1",
"apiKey": "<YOUR_TENSORIX_API_KEY>"
}
],
"tabAutocompleteModel": {
"title": "DeepSeek Chat",
"provider": "tensorix",
"model": "deepseek/deepseek-chat-v3.1",
"apiKey": "<YOUR_TENSORIX_API_KEY>"
}
}
Was this page helpful?