
장면 예시이며 이 모델의 생성 결과가 아닙니다
모델:
가격: 7 credits per 1K input tokens · ≈ $0.0035 · 60 credits per 1K output tokens · ≈ $0.03높은 안정성과 APIAny 플랫폼의 상세 사용 기록을 제공합니다.
프롬프트 프리셋 — 생성 결과 없음
Sampling temperature.
Maximum output tokens.
Reasoning is always on for this model; effort selects depth.
Summary mode for reasoning output when supported.
Controls output detail for Responses API requests.
USD 추정 ≈ $0.123: $999 등급: 1 USD = 2,000 크레딧.

기록
이 브라우저에 로컬 저장됨
실행 중 0개 · 완료 0개
입력
≈ $0.0035
출력
≈ $0.03
캐시 읽기
≈ $0.0005
컨텍스트
최대 출력
인증
모든 요청은 Authorization 헤더에 Bearer 토큰을 포함해야 합니다. 콘솔에서 API Key를 만드세요.
Authorization: Bearer YOUR_API_KEYhttps://apiany.ai/v1/chat/completions요청 파라미터
| 파라미터 | 유형 | 필수 | 설명 |
|---|---|---|---|
model | 문자열 | 필수 | 호출할 모델 식별자이며, 해당 모델의 ID를 사용합니다. |
messages | 배열 | 필수 | OpenAI 대화 형식의 메시지 기록(role + content). |
stream | 불리언 | 선택 | true이면 응답이 SSE 스트림으로 반환됩니다. |
요청 예시
curl "https://apiany.ai/v1/chat/completions" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-6-astra",
"messages": [
{
"role": "user",
"content": "Analyze this fictional single-process JavaScript queue with two overlapping calls. let busy=false; const queue=['A','B']; async function take(){ if(busy || !queue.length) return; await Promise.resolve(); busy=true; const job=queue.shift(); try { await send(job); } finally { busy=false; } }. send(job) is async and must never overlap. Explain an interleaving that violates this rule, give the smallest safe fix, and describe a deterministic test. Do not redesign it into a distributed queue."
}
],
"temperature": 0.7,
"max_tokens": 4096,
"reasoning": {
"summary": "auto"
},
"text": {
"verbosity": "medium"
}
}'응답 예시
{
"id": "chatcmpl-abc123",
"object": "chat.completion",
"model": "gpt-6-astra",
"choices": [
{
"index": 0,
"message": {
"role": "assistant",
"content": "Hello! How can I help?"
},
"finish_reason": "stop"
}
],
"usage": {
"prompt_tokens": 12,
"completion_tokens": 18,
"total_tokens": 30
}
}