Now on VeniceLLMReasoningAnonymous

GPT-6 Luna

OpenAI's most efficient GPT-6 model for high-volume, focused tasks — vision, web search, and function calling at half the cost of its predecessor.

For agents
curl https://api.venice.ai/api/v1/chat/completions \
  -H "Authorization: Bearer $VENICE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "openai-gpt-6-luna",
    "messages": [{ "role": "user", "content": "Explain quantum tunneling simply." }]
  }'
Model IDopenai-gpt-6-luna
Maker
OpenAI
Context
1,050K tokens
Reasoning
Supported
Privacy
Anonymous

Overview

What is GPT-6 Luna

GPT-6 Luna is OpenAI's most efficient large language model in the GPT-6 series, released on September 22, 2026. Designed for high-volume, focused tasks, it supports vision, function calling, reasoning, and web search, with a 1.05M-token context window and pricing cut in half compared to GPT-5.6 Luna.

Using it anonymously on Venice

On Venice, GPT-6 Luna runs with anonymized privacy — your prompts are never stored or used for training. This means you get the full power of OpenAI’s efficient, multimodal model without surveillance, ideal for scaling applications where cost, privacy, and input flexibility matter. You maintain sovereignty over your data while accessing one of the most cost-effective high-context models available.

AnonymousNo prompt trainingTEE · hardware enclaveEnd-to-end encrypted

Agent quickstart

Three calls, copied straight out

The API is OpenAI-compatible: change the base URL and the model id and existing client code works unchanged.

Streaming chat

curl https://api.venice.ai/api/v1/chat/completions \
  -H "Authorization: Bearer $VENICE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "openai-gpt-6-luna",
    "stream": true,
    "messages": [{ "role": "user", "content": "Draft the release note." }]
  }'

Tool calling

curl https://api.venice.ai/api/v1/chat/completions \
  -H "Authorization: Bearer $VENICE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "openai-gpt-6-luna",
    "messages": [{ "role": "user", "content": "Find the rate limits." }],
    "tools": [{
      "type": "function",
      "function": {
        "name": "search_docs",
        "description": "Search the API documentation.",
        "parameters": {
          "type": "object",
          "properties": { "query": { "type": "string" } },
          "required": ["query"]
        }
      }
    }],
    "tool_choice": "auto"
  }'

Python SDK

import os
from openai import OpenAI

client = OpenAI(
    api_key=os.environ["VENICE_API_KEY"],
    base_url="https://api.venice.ai/api/v1",
)

resp = client.chat.completions.create(
    model="openai-gpt-6-luna",
    messages=[{"role": "user", "content": "Build without permission."}],
)
print(resp.choices[0].message.content)

Specifications

Datasheet

Maker
OpenAI
Open weights
No — proprietary
License
Proprietary
Modes
reasoning.effort: none, low, medium (default), high, xhigh, max
Context window
1,050K tokens
Prompt length
Up to 1,050K tokens input
Input images
Supported — multiple images, formats: JPEG, PNG, GIF, WebP; max size: 20MB each
Released
September 22, 2026
Architecture
Transformer-based autoregressive LLM
Parameters
Not disclosed
Max output
128K tokens
Capabilities
Vision, Function calling, Reasoning, Web search
Privacy on Venice
Anonymized — prompts not stored
Available on Venice since
Sep 2026

Assessment

Strengths and limitations

Strengths
  • Exceptional cost efficiency: priced at half of GPT-5.6 Luna, making it ideal for high-volume applications.
  • Supports vision, web search, function calling, and structured output, enabling rich agentic workflows.
  • Massive 1.05M-token context window allows processing of entire codebases, books, or legal documents in one go.
  • Runs with anonymized privacy on Venice: no prompt retention, no profiling, no training use.
  • Efficient reasoning modes let you tune performance vs. cost for different task types.
Limitations
  • Not open-source or open weights: cannot be self-hosted or fine-tuned.
  • Lower reasoning ceiling than GPT-6 Astra or Sol; not intended for frontier-level agentic or scientific tasks.
  • No audio or video input/output support: text and images only.
  • Slight regression in coding benchmarks compared to GPT-5.6 Luna, particularly in SWE-Atlas-QnA and DeepSWE.

Use cases

What it is good for

  1. 01High-volume customer support automation with image and document understanding.
  2. 02Document processing pipelines that extract structured data from scanned forms or web pages.
  3. 03Lightweight agentic workflows using function calling and web search at low cost.
  4. 04Privacy-sensitive applications where prompt retention is unacceptable.
  5. 05Long-context summarization of technical or legal documents with image references.

Prompting

Getting better results

Use 'reasoning.effort=none' for fastest, cheapest responses on simple tasks.

Include web search in your tool configuration when up-to-date results are needed.

Upload multiple images in a single request to compare or analyze them together.

Wrap structured output requirements in JSON schema to ensure consistent formatting.

Use cached input for repeated prompts — saves 90% on input token cost.

For long documents, split into chunks under 272K tokens to avoid premium pricing.

Alternatives

How it compares

ModelBest forContextOpen weightsPrice (Venice)
GPT-6 LunaHigh-volume, cost-efficient tasks1M tokensNo$0.13 in · $0.63 out / 1M
Claude Fable 5.1Balanced performance and cost1M tokensNo$12 in · $60 out / 1M
DeepSeek V4.1 FlashOpen-weight speed1M tokensYes$0.38 in · $1.50 out / 1M
Google Gemma 4 31B InstructOpen-weight budget option256K tokensYes$0.12 in · $0.36 out / 1M

Choose GPT-6 Luna when you need maximum context and multimodal capabilities at the lowest possible cost, especially for high-volume, privacy-sensitive workloads. It outperforms rivals on price-to-performance for focused tasks.

Pricing

What it costs on Venice

Billed per token on Venice: $0.13 per 1M input tokens and $0.63 per 1M output tokens.

Input / 1M tokens
$0.13
Per 1M tokens
Output / 1M tokens
$0.63
Per 1M tokens
Cached input / 1M
$0.01
Per 1M tokens

New Venice accounts include a free daily allowance and 500 welcome credits — no credit card required.

Getting a key

From nothing to a first call

  1. 01

    Create a key in API settings. Nothing else is required to start.

  2. 02

    Export it as VENICE_API_KEY so the snippets above run unedited.

  3. 03

    Point an existing OpenAI client at https://api.venice.ai/api/v1. The scheme is part of the value: an OpenAI client given a bare host does not resolve it.

  4. 04

    Pass openai-gpt-6-luna as the model and send the request.

FAQ

Frequently asked questions

GPT-6 Luna is OpenAI's most efficient model in the GPT-6 lineup, released on September 22, 2026. It's designed for high-volume, focused tasks with a 1.05M-token context, vision, web search, and function calling, all at half the price of GPT-5.6 Luna.

On Venice, GPT-6 Luna costs $0.13 per 1M input tokens and $0.63 per 1M output tokens. Cached input is just $0.01 per 1M tokens, making repeated queries extremely cost-effective.

No. GPT-6 Luna is a proprietary model owned by OpenAI. It is not open source or open weights, so it cannot be self-hosted or fine-tuned. However, you can use it via API on Venice without a subscription.

Yes. GPT-6 Luna supports multiple image inputs in JPEG, PNG, GIF, and WebP formats, with a maximum size of 20MB per image. This enables document analysis, visual reasoning, and multimodal workflows.

GPT-6 Luna has a 1,050,000-token context window, allowing it to process extremely long documents, codebases, or conversations in a single request.

GPT-6 Sol is more powerful and better for complex coding and agentic workflows, while GPT-6 Luna is optimized for cost efficiency and high-volume, focused tasks. Sol costs more ($2/$10 per 1M tokens) and scores higher on benchmarks; Luna is cheaper ($0.13/$0.63) and slightly regressed in coding tasks but ideal for scaling.

Yes. GPT-6 Luna supports function calling, web search, and structured output, making it suitable for building agents that interact with external tools and APIs.

Use GPT-6 Luna anonymously

One key, free to start, no credit card.

Start chat