GPT-6 Astra는 OpenAI의 GPT-6 플래그십이며 이 세대에서 API로 공개된 첫 모델입니다.
- 입력
- 텍스트 이미지 $10/M
- 출력
- 텍스트 $50/M
- 캐시 읽기
- $1/M
- 컨텍스트
- 1.1M
- 지식 컷오프
- 2026-04
입력이 272K 토큰을 넘으면 요청 전체가 입력 $20/M · 출력 $75/M로 과금됩니다
벤치마크
벤더 공개: Alibaba (Qwen) Anthropic OpenAI
가격의 위치
동종 65개 모델 중 가격 위치
이 막대는 Synthorai에 있는 같은 종류의 모델 가운데 이 모델의 가격이 어디쯤인지 보여 줍니다. 양쪽 끝에는 가장 싼 모델과 가장 비싼 모델의 이름이 있습니다. 기본 요율 기준이며 배치·리전·캐시 쓰기 할인은 가격 페이지에 있습니다.
스펙 및 제한
토큰
| 컨텍스트 윈도우(공급사 사양) | 1,050,000 |
|---|---|
| 최대 출력(벤더 스펙) | 128,000 |
| 지식 컷오프 | 2026-04 |
프롬프트 캐싱
| 캐싱 방식 | 자동 |
|---|---|
| 최소 프리픽스 | 1,024 |
| 수명 | 5-10분, 최대 1시간 |
사고
| 공급사 파라미터 | reasoning.effort |
|---|---|
| 허용 값 | none · low · medium · high · xhigh · max |
| 기본값 | medium 요청에서 지정하지 않을 때 적용 |
| 비활성화 가능 | 지원 |
| 파라미터 | reasoning_effort |
| 값 | minimal · low · medium · high 게이트웨이 측 파라미터 표면 - 위의 벤더 매핑이 적용됩니다 |
모델
| 모달리티 | 텍스트 + 이미지 → 텍스트 |
|---|
- OpenAI's GPT-6 flagship. Upstream exposes only the suffixed gpt-6-astra id
- there is no bare gpt-6 alias. 1.05M context / 128k max output (the output ceiling is the value upstream itself reports when asked for more). Prompts over 272k input tokens move the whole request onto the long-context rate. Two upstream restrictions carry over from the GPT-5.6 family: temperature accepts only its default, and function tools cannot be combined with reasoning on Chat Completions
출처: OpenAI 공식 문서 ↗
하나의 프롬프트 - 게이트웨이를 통해 측정됨
GPT-6 Astra 통과 · 3 sentences
Enabling reasoning makes the model do more work per request, often generating internal reasoning tokens that are billed even though they do not appear in the final answer. If traffic, model choice, and pricing stayed the same, those extra tokens likely explain why our bill doubled—not longer answers or more users. We should verify the usage breakdown, then reserve higher reasoning levels for tasks where improved results justify the added cost.
출력 283 tok (+196 추론) 지연 시간 17.2 s
지시 준수(정확히 세 문장 - 셀 수 있음), 독자 맞춤(CFO 어조), 그리고 아래 토큰 계량기가 드러내는 숨은 사고 과금 격차.
GPT-6 Astra 통과 · 8/8 cases
```python def longest_run(xs): if not xs: return 0 best = cur = 1 for i in range(1, len(xs)): if xs[i] == xs[i - 1]: cur += 1 else: cur = 1 best = max(best, cur) return best ``` The original code counts equal adjacent pairs rather than items, so every nonempty run is undercounted by one: a single-element input returns `0`, and a run of three equal items returns `2`. Starting and resetting `cur` to `1` counts the first item of each run, while the empty-input check preserves a result of `0`. Updating `best` after each iteration includes runs ending at the last index without needing a final flush; the original also updated during trailing runs, but undercounted them.
출력 321 tok (+131 추론) 지연 시간 13.5 s
수정이 실제로 옳은지(실행 가능한지), 설명의 밀도, 그리고 범위가 정해진 작업에서의 토큰 효율.
GPT-6 Astra 통과 · 5/5 fields, guidance "Formal guidance is withheld pending the "
{ "company": "Meridian Robotics", "quarter": "September quarter", "revenue_usd_m": null, "growth_pct": "eleven and change", "guidance": "Formal guidance is withheld pending the Q4 close." }
출력 329 tok (+267 추론) 지연 시간 16.9 s
스키마 준수(없는 필드를 지어내지 않기), 환각 압력(guidance는 명시적으로 보류됨), 그리고 구조화 출력 경로의 차이.
GPT-6 Astra 통과 · 120 words, 0 banned, 1 question
Introducing Cross Provider Prompt Cache, a new API gateway feature that reuses eligible prompt content across supported AI providers. Why pay to process the same context every time? Configure caching once at the gateway, then route requests between models while keeping shared instructions, reference material, and conversation prefixes ready for reuse. Caching controls let teams set expiration windows, isolate tenants, and exclude sensitive content. Cache analytics show hit rates, estimated savings, and latency trends, helping developers tune performance with confidence. Existing routing policies continue to work, so adoption fits your current architecture. Start with a single application, measure the results, and expand as needed. Available today in the dashboard and API, with documentation and examples to guide your first deployment.
출력 665 tok (+516 추론) 지연 시간 19.3 s
제약 준수(단어 예산, 금지어 목록, 단 하나의 의문문), 문체 지문, 그리고 길이 제어.
30초 만에 GPT-6 Astra 사용하기
OpenAI 호환. base_url만 바꾸면 SDK는 그대로. POST /v1/chat/completions
from openai import OpenAI
client = OpenAI(
base_url="https://synthorai.io/v1",
api_key="sk-syn-...",
)
resp = client.chat.completions.create(
model="gpt-6-astra",
messages=[{"role": "user", "content": "Summarize this diff"}],
reasoning_effort="medium",
)
print(resp.choices[0].message.content)import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://synthorai.io/v1",
apiKey: "sk-syn-...",
});
const resp = await client.chat.completions.create({
model: "gpt-6-astra",
messages: [{ role: "user", content: "Summarize this diff" }],
reasoning_effort: "medium",
});
console.log(resp.choices[0].message.content);curl https://synthorai.io/v1/chat/completions \
-H "Authorization: Bearer sk-syn-..." \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-6-astra",
"messages": [{"role": "user", "content": "Hello"}],
"reasoning_effort": "medium"
}'package main
import (
"context"
"fmt"
"github.com/openai/openai-go/v3"
"github.com/openai/openai-go/v3/option"
)
func main() {
client := openai.NewClient(
option.WithBaseURL("https://synthorai.io/v1"),
option.WithAPIKey("sk-syn-..."),
)
resp, _ := client.Chat.Completions.New(context.TODO(), openai.ChatCompletionNewParams{
Model: "gpt-6-astra",
Messages: []openai.ChatCompletionMessageParamUnion{
openai.UserMessage("Summarize this diff"),
},
ReasoningEffort: openai.ReasoningEffortMedium,
})
fmt.Println(resp.Choices[0].Message.Content)
}import com.openai.client.OpenAIClient;
import com.openai.client.okhttp.OpenAIOkHttpClient;
import com.openai.models.chat.completions.*;
import com.openai.models.ReasoningEffort;
OpenAIClient client = OpenAIOkHttpClient.builder()
.baseUrl("https://synthorai.io/v1")
.apiKey("sk-syn-...")
.build();
ChatCompletion resp = client.chat().completions().create(
ChatCompletionCreateParams.builder()
.model("gpt-6-astra")
.addUserMessage("Summarize this diff")
.reasoningEffort(ReasoningEffort.MEDIUM)
.build());
System.out.println(resp.choices().get(0).message().content().orElse(""));GPT-6 Astra 소개
- 업스트림은 접미사가 붙은 gpt-6-astra 식별자만 제공하므로 대체할 수 있는 순수 gpt-6 별칭은 없습니다.
- 1,050,000 토큰 컨텍스트 윈도와 128K 최대 출력 토큰을 함께 제공하며, 이 출력 상한은 더 큰 요청을 명시적 한도와 함께 거부하는 API 자체로 확인되었습니다.
- 텍스트와 이미지 입력, 구조화 출력, 스트리밍, 도구 사용, 프롬프트 캐싱, 배치를 지원합니다.
- 가격은 컨텍스트 길이로 나뉘어 입력 272K 토큰 이하는 짧은 컨텍스트 요금이 적용되고, 초과하면 요청 전체가 긴 컨텍스트 요금(입력 약 2배, 출력 1.5배)으로 넘어갑니다.
- GPT-5.6 제품군에서 이어진 두 가지 업스트림 제약에 유의하세요. temperature는 기본값만 허용하며, Chat Completions에서는 함수 도구와 추론을 함께 쓸 수 없습니다.
- 도구가 필요하면 Responses API를 쓰거나 추론을 끄십시오.
- Synthorai는 나머지 모델과 동일한 OpenAI 호환 API로 GPT-6 Astra를 제공합니다.
자주 묻는 질문
GPT-6 Astra API는 무료로 사용해 볼 수 있나요?
네, 신규 계정에는 10회의 체험 호출과 최대 $1의 무료 크레딧이 제공되며, 카드 등록이 필요 없습니다. 입력 토큰 $10/M 기준으로, 이 크레딧만으로도 GPT-6 Astra에 약 8K 토큰 규모의 요청을 대략 12회 보낼 수 있습니다.
GPT-6 Astra는 무엇에 가장 강한가요?
OpenAI의 GPT-6 플래그십, gpt-6-astra로만 공개, 1.05M 컨텍스트와 API가 직접 확인한 128K 출력 상한, 입력 272K 토큰을 경계로 한 짧은/긴 컨텍스트 요금. 전체 내용은 벤더의 공식 릴리스 노트를 정리한 소개 섹션을 참고하세요.
GPT-6 Astra의 가격은 얼마인가요?
Synthorai에서 GPT-6 Astra는 입력 토큰 100만 개당 $10, 출력 토큰 100만 개당 $50입니다. 공급사 정가 그대로이며 플랫폼 마진이 없습니다. 캐시된 입력 토큰은 $1/M로 과금됩니다.
GPT-6 Astra는 프롬프트 캐싱을 지원하나요?
네, 자동으로 지원합니다. OpenAI에서 서빙되는 프롬프트는 코드 변경 없이 캐시됩니다. 캐시된 입력 토큰은 $1/M로 과금됩니다(미캐시 시 $10/M); 캐시되려면 프롬프트에 1,024 토큰 이상의 안정적인 프리픽스가 필요합니다 (TTL 5-10분, 최대 1시간). 프롬프트 캐싱 가이드 →
GPT-6 Astra는 어떻게 이용하나요?
기존 OpenAI SDK의 base_url을 "https://synthorai.io/v1"로 지정하고 model="gpt-6-astra"로 설정하면 끝입니다. API 키 하나로 게이트웨이의 모든 모델을 사용할 수 있습니다.
GPT-6 Astra의 지식 컷오프는 언제인가요?
벤더 공식 문서에 따르면 GPT-6 Astra의 지식 컷오프는 2026-04입니다(2026-09-07 기준).
관련 모델
비교
이 페이지의 모든 값은 벤더 자체 문서(위 링크)에서 전사했으며 확인 날짜를 함께 표기합니다. 가격은 카탈로그 전체와 비교하지만, 벤더마다 정의가 다른 사양 값은 차이를 명시할 뿐 도표로 비교하지 않습니다. 저희가 측정한 수치는 없으며 점수도 매기지 않습니다.