SubQ Preview
subq-previewUse this model for long-context chat completion requests through the SubQ API.
Tool callsYes
Input
TextSupported
ImageNot supported
AudioNot supported
VideoNot supported
Output
TextSupported
The SubQ API currently exposes one public model through the OpenAI-compatible Chat Completions API. Pass the model ID exactly as shown in the model field of your request body.
SubQ currently supports tool calls. Only text input and text output are supported at the moment.
subq-previewUse this model for long-context chat completion requests through the SubQ API.
The context window is the total space available for request messages and generated output. Keep enough room for the response when sending large inputs.
Set the model field in a chat completion request to the supported ID:
curl https://api.subq.ai/v1/chat/completions \ -H "Authorization: Bearer sk-your-api-key" \ -H "Content-Type: application/json" \ -d '{ "model": "subq-preview", "messages": [ { "role": "user", "content": "Summarize this repository." } ], "max_tokens": 1000 }'Model IDs are case-sensitive. To fetch the current list programmatically, use the Models API.