Skip to main content
Text generation models produce new text from an input prompt. ZeroGPU offers open-weight heavyweights — DeepSeek’s deepseek-v4.1-flash and deepseek-v4-flash-0731, OpenAI’s gpt-oss-120b, Alibaba’s qwen3-30b-a3b-fp8, and Z.ai’s glm-5.2 and glm-5.3-flash — for reasoning and tool use, OpenAI’s gpt-5.4-nano, gpt-5.6-luna, and gpt-4.1-mini for cost-efficient high-volume work, plus conversational and reasoning models from Liquid AI, Meta’s llama-3.1-8b-instruct-fast for high-volume summarization, and Meta’s llama-guard-4-12b for safety classification. Each request is shown for both the Responses API and the OpenAI-compatible Chat Completions API — except qwen3-30b-a3b-fp8, glm-5.2, and deepseek-v4-flash-0731, which are Chat Completions only.

gpt-oss-120b

OpenAI’s gpt-oss-120b is an open-weight Mixture-of-Experts model with 117B total parameters (5.1B active per token), served on ZeroGPU for general text generation. It reasons through a problem before answering and returns that reasoning trace alongside the final answer, and it supports function calling, batch tasks, and a 131,072-token context window. When a task needs frontier-level reasoning or tool use beyond what the smaller edge models cover, this is the model.
References: Model docsTermsPrivacy
The model reasons before it answers and returns the trace alongside the final text — a reasoning output item in Responses, and a reasoning field on the message in Chat Completions.

qwen3-30b-a3b-fp8

This model supports the Chat Completions API only — the Responses endpoint (/v1/responses) is not available for this model.
Alibaba’s Qwen3-30B-A3B is an open-weight Mixture-of-Experts model with 30.5B total parameters (3.3B active per token), served on ZeroGPU as an FP8 build for efficient inference. It thinks through a problem before answering and returns that reasoning alongside the final text, and it supports function calling, streaming, batch tasks, and 100+ languages with a 32,768-token context window. When you want frontier-style reasoning and tool use in a lighter, multilingual package, this is the model.
References: Model docsTermsPrivacy
Chat Completions
The model reasons before it answers and returns the trace alongside the final text as a reasoning field on the message.
Response

glm-5.2

This model supports the Chat Completions API only — the Responses endpoint (/v1/responses) is not available for this model.
Z.ai’s GLM-5.2 is an open-weight Mixture-of-Experts flagship built for long-horizon tasks, with 753B total parameters activating 8 of 256 experts per token, served on ZeroGPU for general text generation. It sustains a 262,144-token (256K) context, reasons through a problem with flexible thinking effort before answering, and supports function calling and batch tasks. MIT-licensed with no usage restrictions. When the work spans large codebases, day-long agent sessions, or long documents, this is the model.
References: Model docsTermsPrivacy
Chat Completions
The model reasons before it answers and returns the trace alongside the final text as a reasoning field on the message.
Response

deepseek-v4.1-flash

DeepSeek’s DeepSeek-V4.1-Flash is an open-weight sparse Mixture-of-Experts model and the first built on DeepSeek’s Causal Encoder-Decoder (CED) architecture, activating 8B parameters on input and 16B on output, served on ZeroGPU for general text generation. It keeps the 1,048,576-token (1M) context window of the V4 Flash line, which suits large codebases, long documents, extended conversations, and multi-step agent tasks, and supports function calling alongside both fast non-thinking replies and higher-effort reasoning.
References: Model docsTermsPrivacy
The model returns its answer as the assistant message — an output_text item in Responses, the message.content field in Chat Completions — with usage token counts alongside it.

glm-5.3-flash

Z.ai’s GLM-5.3-Flash is an efficient open-weight model for coding and long-horizon agent tasks, served on ZeroGPU for general text generation. Its hybrid sparse and linear attention keeps long-context behaviour accurate across a 1,048,576-token (1M) window while reducing compute, and it supports function calling and adjustable reasoning effort.
References: Model docsTermsPrivacy
The model returns its answer as the assistant message — an output_text item in Responses, the message.content field in Chat Completions — with usage token counts alongside it.

gpt-5.4-nano

OpenAI’s GPT-5.4 nano is the most cost-efficient model in the GPT-5.4 family, served on ZeroGPU for high-volume and latency-sensitive workloads such as classification, extraction, routing, and sub-agent tasks. It supports function calling and structured outputs across a 400,000-token context window.
References: TermsPrivacy
The model returns its answer as the assistant message — an output_text item in Responses, the message.content field in Chat Completions — with usage token counts alongside it.

gpt-5.6-luna

OpenAI’s GPT-5.6 Luna is the cost-optimized model of the GPT-5.6 family, served on ZeroGPU for cost-sensitive, high-volume workloads. It supports adjustable reasoning effort, function calling, and structured outputs across a 272,000-token context window.
References: TermsPrivacy
The model returns its answer as the assistant message — an output_text item in Responses, the message.content field in Chat Completions — with usage token counts alongside it.

gpt-4.1-mini

OpenAI’s GPT-4.1 mini is the fast, cost-efficient model of the GPT-4.1 family, served on ZeroGPU for general text generation. It excels at instruction following and tool calling, supports function calling and structured outputs, and works across a 1,047,576-token (1M) context window with low latency.
References: TermsPrivacy
The model returns its answer as the assistant message — an output_text item in Responses, the message.content field in Chat Completions — with usage token counts alongside it.

deepseek-v4-flash-0731

This model supports the Chat Completions API only — the Responses endpoint (/v1/responses) is not available for this model.
DeepSeek’s DeepSeek-V4-Flash is an open-weight Mixture-of-Experts model built for efficient reasoning, coding, and agentic workflows, with 284B total parameters activating only 13B per token, served on ZeroGPU for general text generation. It sustains a 1,048,576-token (1M) context well suited for analyzing large codebases, long documents, extensive conversations, and complex research tasks, and supports fast non-thinking responses as well as higher-effort reasoning modes for planning, problem-solving, and multi-step automation. MIT-licensed with no usage restrictions.
References: Model docsTermsPrivacy
Chat Completions
The model reasons before it answers and returns the trace alongside the final text as a reasoning field on the message.
Response

llama-3.1-8b-instruct-fast

Meta’s Llama 3.1 Instruct, tuned for fast, low-cost summarization at scale on the ZeroGPU edge network. Its 128K-token context window takes in entire documents, long transcripts, and full email or chat threads in a single pass. No chunking, no stitching partial summaries back together. Built for the high-volume summarization that runs around your core product: condensing long reports and transcripts, summarizing email and chat threads, and processing articles in bulk. When context length matters and you’re summarizing on every request, this is the model that keeps it fast and affordable.
References: Model docsTermsPrivacy
The summary is returned as output[].content[].text (Responses API) or choices[].message.content (Chat Completions).
Response

llama-guard-4-12b

Meta’s Llama Guard 4 12B is a multimodal safety classification model for moderating text, images, and mixed text-image inputs. It evaluates both incoming prompts and generated responses, returning a safe or unsafe classification along with the policy categories a violation falls under. It handles multilingual text and multiple images in one call, which makes it a fit for chat moderation, prompt and response filtering, policy enforcement, and agent guardrails. Built on a dense 12B architecture derived from Llama 4 Scout, it is designed as a dedicated safety layer in front of a production model rather than as a general-purpose generator.
References: Model docsTermsPrivacy
On the Responses and Chat Completions endpoints the verdict comes back as the output text — safe, or unsafe followed by the violated policy categories. On /v1/moderations the response is OpenAI’s moderations envelope, the same shape zlm-v1-moderation-edge returns.

LFM2.5-1.2B-Instruct

Liquid AI’s LFM2.5-1.2B-Instruct is a hybrid architecture model purpose-built for on-device deployment, trained on 28 trillion tokens with multi-stage reinforcement learning. It delivers best-in-class instruction following and native tool-calling at the 1B scale — something very few models this size can do reliably. Its hybrid design gives it significantly faster inference with lower memory usage compared to transformer-only models of the same size. If you need a conversational model that can actually run on real devices without a GPU, this is it. Supports 8 languages including English, Chinese, Japanese, and Spanish.
References: Model docsTermsPrivacy
Response

LFM2.5-1.2B-Thinking

Liquid AI’s LFM2.5-1.2B-Thinking is a compact reasoning model that works through a problem step by step before it answers. Built by Liquid AI, it generates an explicit chain-of-thought trace so for multi-step math, planning, data extraction, and agentic tool-calling, you get verifiable intermediate reasoning, not just a final guess. At 1.2B parameters it fits under a gigabyte and runs fast on CPU at the edge, rivaling models several times its size on reasoning benchmarks. Reach for a frontier model when the task is knowledge-heavy or code-intensive, and keep this one as the planning brain that decides and orchestrates. When the task needs reasoning, this is the model.
References: Model docsTermsPrivacy
The model returns its answer alongside an explicit reasoning trace.
Response