Skip to main content

API & Models

Available Models

Dedicated Gateway serves as a proxy to the full IG1 AI catalog.

LLM Models

Model IDModel NameCapabilitiesMax Context
kimi-k26-instantKimi K2.6 1T A32B InstantStandard, High-velocity coding, code review, architectural decisions256K tokens
kimi-k26-thinkingKimi K2.6 1T A32B ThinkingDeep debugging, algorithm design, complex system modeling256K tokens
kimi-k26-thinking-preserveKimi K2.6 1T A32B Thinking PreserveAutonomous agents with preserved reasoning traces across turns256K tokens
qwen35-122b-a10b-instruct-generalQwen3.5-122B-A10BFast, accurate, and ready for any mixed workload.256K tokens
qwen35-122b-a10b-instruct-creativeQwen3.5-122B-A10B CreativePerfect for copywriting, storytelling, and brainstorming sessions that need a spark.256K tokens
qwen35-122b-a10b-thinking-generalQwen3.5-122B-A10B ThinkingEngages deep reasoning256K tokens
qwen35-122b-a10b-thinking-codingQwen3.5-122B-A10B Thinking Coderpair programmer for algorithms, refactoring, and system design256K tokens
Image resolution limit

LLM models support images up to 4096 × 4096 pixels. However, processing images high-resolution images (more than 4K) can significantly increase:

  • Computing time: Varies based on resolution and image complexity
  • Token consumption: Higher resolutions use more input tokens

Recommendation: For optimal performance and cost efficiency, resize images to 2K maximum (2560 × 1440 pixels) before sending.

Select the right LLM model

Kimi K2.6

Choose it when you're building software, running multi-agent workflows, or tackling complex engineering tasks that demand frontier-level reasoning.

Kimi K2.6 delivers Claude Opus 4.6-class performance with a focus on agentic coding. It is perfect to architects solutions, orchestrates multi-agent collaborations, and thinks several steps ahead.

Model naming

All Kimi K2.6 virtual models carry a suffix (-instant, -thinking, -thinking-preserve) to indicate that the request is altered by the IG1 AI routing layer. None of them provide direct, unmodified access to the raw model.

Kimi K2.6 is a thinking model by default. The -instant suffix alters the request to force the model to not produce thinking traces and jump to the final response directly, like a non thinking model.

Thinking modes explained

Kimi K2.6 supports two distinct thinking behaviors:

Interleaved thinking (default in kimi-k26-thinking)

  • The model can produce reasoning, then call a tool, then continue reasoning — all within a single conversational turn.
  • If the client sends back the reasoning content during this interleaved flow, the model can continue its thinking trace using the tool results. This avoids forcing the model to restart its thinking trace from scratch, using a new tool response as a fresh starting point. This greatly enhances model coherence and reasoning quality; therefore, clients are strongly encouraged to echo back thinking traces. Thinking traces from previous conversational turns—where the assistant has already produced its final answer—are automatically dropped and excluded from input token counts.
  • This is already the default behavior in the chat template and works as long as the client returns the reasoning content.

Preserved thinking (kimi-k26-thinking-preserve)

  • The model preserves its full reasoning trace across multiple conversational turns.
  • This prevents an autonomous agent from emitting a hypothesis, invalidating it, and then re-emitting the same hypothesis in the next turn because it no longer "remembers" it.
  • Over multiple turns, this reduces redundant thinking and makes the agent more performant.
  • Purpose-built for autonomous agents and long-running workflows.

Qwen 3.5 122B

Choose it when you need a reliable, high-performance model that handles everything from creative writing to visual analysis — without breaking the budget.

Qwen 3.5 122B is the Swiss Army knife of our model lineup. It does it all, and it does it cost-effectively. With four tuned variants, you get precisely the right personality for every task. :::

Sampling parameter presets

The Creative and Thinking Coder variants enforce specific sampling parameters on the backend. If you need full control over sampling, use the base instruct-general or thinking-general models instead.

Details and usage example available under API documentation. Use your dedicated URL Endpoint instead of api.ig1.ai

Embedding & Reranking models

Model IDModel NameDimensionsMax ContextIG1 AI Model Name
qwen3-vl-embedding-8bQwen3 VL Embedding128 – 4096 (configurable)32K tokensQwen3-VL-Embedding 8B
bge-m3BGE-M31024 (fixed)8K tokensBGE-m3
bge-reranker-v2-m3BGE-Reranker-v2-M3N/A (reranker)BGE-Reranker-v2-m3

Image models

Model IDModel NameCapabilitiesIG1 AI Model Name
qwen-imageQwen ImageImage generationQwen Image
qwen-image-peQwen Image PEImage generation with prompt enhancementQwen Image PE
qwen-image-editQwen Image EditImage editingQwen Image Edit
qwen-image-edit-peQwen Image Edit PEImage editing with prompt enhancementQwen Image Edit PE

Virtual Models

Virtual Models are custom named models on top of IG1 AI models. By default IG1 teams deploy following models on each dedicated gateways.

Virtual Model IDIG1 AI Model ID
coding-maxkimi-k26-thinking
coding-max-thinkingkimi-k26-thinking-preserve
general-maxkimi-k26-instant
general-max-thinkingkimi-k26-thinking
coding-pro-thinkingqwen35-122b-a10b-thinking-coding
general-proqwen35-122b-a10b-instruct-general
general-pro-thinkingqwen35-122b-a10b-thinking-general
image-proqwen-image-pe
image-pro-editqwen-image-edit-pe

API Supported endpoints

Dedicated Gateway supports following API endpoints from IG1 AI API documentation:

  • GET /v1/models
  • POST /v1/chat/completions
  • POST /v1/embeddings
  • POST /cohere/v2/embed
  • POST /cohere/v2/rerank
  • POST /v1/images/generations
  • POST /v1/images/edits
  • POST /tokenize
  • GET /pricing

Please refer to api reference for all details.

API endpoint

Replace API reference endpoint URL from example by your own Dedicated Gateway endpoint.

Example: Replace https://api.ig1.ai by https://api.demo.ig1.ai if you use the Demo Endpoint.


API Unsupported endpoints

warning

Dedicated Gateway do not support following endpoints:

  • POST /document
  • GET /usage
  • GET /usage/history

You should use your API Master Key and direct request to https://api.ig1.ai instead if you need to call these endpoints.