Skip to main content

Documentation Index

Fetch the complete documentation index at: https://chatgpttech.mobi/docs/llms.txt

Use this file to discover all available pages before exploring further.

DeepSeek

Use DeepSeek in the dashboard

View model page
ModelModel IDContextInputOutputFunction calling
DeepSeek V3deepseek/deepseek-chat64K$0.14 / 1M$0.28 / 1M
DeepSeek R1deepseek/deepseek-reasoner64K$0.55 / 1M$2.19 / 1M

OpenAI

Use OpenAI models in the dashboard

View model page
ModelModel IDContextInputOutputVisionFunction calling
GPT-4oopenai/gpt-4o128K$2.50 / 1M$10.00 / 1M
GPT-4o miniopenai/gpt-4o-mini128K$0.15 / 1M$0.60 / 1M
o3-miniopenai/o3-mini200K$1.10 / 1M$4.40 / 1M

Anthropic

Use Anthropic models in the dashboard

View model page
ModelModel IDContextInputOutputVisionFunction calling
Claude 3.5 Sonnetanthropic/claude-3-5-sonnet200K$3.00 / 1M$15.00 / 1M
Claude 3.5 Haikuanthropic/claude-3-5-haiku200K$0.80 / 1M$4.00 / 1M

Google

Use Google models in the dashboard

View model page
ModelModel IDContextInputOutputVisionFunction calling
Gemini 2.0 Flashgoogle/gemini-2.0-flash1M$0.10 / 1M$0.40 / 1M
Gemini 2.5 Progoogle/gemini-2.5-pro1M$1.25 / 1M$10.00 / 1M

Example

import OpenAI from 'openai';

const client = new OpenAI({
  apiKey: 'sk-hub-your-key-here',
  baseURL: 'https://api.chatgpttech.mobi/v1',
});

const response = await client.chat.completions.create({
  model: 'deepseek/deepseek-chat',  // swap in any model ID
  messages: [{ role: 'user', content: 'Explain quantum computing in one sentence.' }],
});

console.log(response.choices[0].message.content);
For a full integration walkthrough, see Quickstart.