Grok 4.20 Multi-Agent 베타(0309 스냅샷)입니다. 1M 토큰 컨텍스트에서 딥 리서치형 멀티에이전트 오케스트레이션을 수행합니다. Responses API 전용입니다.
콘솔의 Playground에서 별도 코드 없이 이 모델을 즉시 테스트할 수 있어요
이 모델의 사용법을 Claude, ChatGPT 등에 복사
| 토큰 종류 | 크레딧 | 달러 환산 |
|---|---|---|
| 입력 토큰 | 2,323 | $1.55 |
| 출력 토큰 | 4,645 | $3.10 |
| 캐시된 토큰 | 371.6 | $0.25 |
* 1,500 크레딧 ≈ $1 (실제 요금은 사용량에 따라 달라질 수 있습니다)
curl -X POST "https://api.core.today/llm/grok/v1/responses" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer cdt_your_api_key" \
-d '{
"model": "grok-4.20-multi-agent-0309",
"instructions": "You are a research analyst. Cite the evidence you rely on.",
"input": "Compare the three leading approaches to long-context retrieval in 2026 and recommend one for a legal-document pipeline.",
"max_output_tokens": 4096
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
model | string | Yes | - | 모델 ID입니다. 예: "grok-4.20-multi-agent-0309". |
input | string | array | Yes | - | Responses API 입력입니다. 문자열 또는 role/content 메시지 배열 (`messages` 대체). |
instructions | string | No | - | 시스템 지시문입니다 (`system` 메시지 대체). |
max_output_tokens | integer | No | 4096 | 표시되는 답변 길이의 상한입니다. 서브에이전트·추론 토큰은 별도 청구되며 이 값으로 제한되지 않습니다. |
stream | boolean | No | false | SSE 스트리밍 응답 여부입니다. |
이 모델이 받는 유일한 엔드포인트인 Responses API 요청입니다. 리서치급 질문이어야 회당 토큰 하한이 아깝지 않습니다.
curl -X POST "https://api.core.today/llm/grok/v1/responses" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer cdt_your_api_key" \
-d '{
"model": "grok-4.20-multi-agent-0309",
"instructions": "You are a research analyst. Cite the evidence you rely on.",
"input": "Compare the three leading approaches to long-context retrieval in 2026 and recommend one for a legal-document pipeline.",
"max_output_tokens": 4096
}'