Qwen3.6 Max Preview API

3.6 시리즈 (텍스트 전용)의 가장 큰 미리보기 변형: 향상된 코딩 에이전트 실행, 강력한 프론트 엔드 기술 및 더 넓은 긴 꼬리 지식.

Alibaba Cloud텍스트 생성256K 컨텍스트출시 2026년 4월 20일Singapore독점 엔드포인트

Qwen3.6 Max Preview 소개

3.6 시리즈 (텍스트 전용)의 가장 큰 미리보기 변형: 향상된 코딩 에이전트 실행, 강력한 프론트 엔드 기술 및 더 넓은 긴 꼬리 지식.

다른 이름 Qwen3.6 Max, Alibaba Cloud Qwen3.6 Max Preview, Qwen3.6-Max-Preview, qwen3-6-max-preview

reasoningagentic codingweb searchfunction calling

Qwen3.6 Max Preview 사양

모델 ID
qwen3-6-max-preview
제공자
Alibaba Cloud
카테고리
텍스트 생성
출시
2026년 4월 20일
컨텍스트 창
256K 토큰
최대 출력
65,536 토큰
입력
텍스트
출력
텍스트
구조화된 출력
JSON 모드
리전
Singapore
엔드포인트
POST/v1/chat/completionsPOST/v1/responsesPOST/v1/messagesPOST/v1beta/models/qwen3-6-max-preview:generateContent
대체 모델 ID
qwen3.6-max-preview

Qwen3.6 Max Preview API 요금

EmpirioLabs 카탈로그의 실시간 종량제 요금입니다. 사용한 만큼만 결제하며 월 최소 요금이 없습니다.

유형
사양
요금
이름 *
1M 신속한 토큰 당
<=128K $1.31128K-256K $1.97
제품정보
1M 생성 토큰
<=128K $7.88128K-256K $11.82
웹 검색
사용 가능한 경우
$0.020
전체 가격 페이지에서 비교

Qwen3.6 Max Preview API 호출 방법

Qwen3.6 Max Preview은(는) OpenAI 호환 Chat Completions API를 제공합니다. 아무 OpenAI SDK나 EmpirioLabs API 키와 함께 https://api.empiriolabs.ai/v1로 지정하고 모델 ID qwen3-6-max-preview를 사용하세요. EmpirioLabs 대시보드에서 API 키를 발급받으세요.

cURL
curl https://api.empiriolabs.ai/v1/chat/completions \
  -H "Authorization: Bearer $EMPIRIOLABS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "qwen3-6-max-preview",
    "messages": [
      {"role": "user", "content": "Write a haiku about the ocean."}
    ]
  }'
Python (OpenAI SDK)
from openai import OpenAI

client = OpenAI(
    base_url="https://api.empiriolabs.ai/v1",
    api_key="YOUR_EMPIRIOLABS_API_KEY",
)

response = client.chat.completions.create(
    model="qwen3-6-max-preview",
    messages=[{"role": "user", "content": "Write a haiku about the ocean."}],
)
print(response.choices[0].message.content)
Qwen3.6 Max Preview API 전체 레퍼런스

Qwen3.6 Max Preview API 파라미터

EmpirioLabs에서 Qwen3.6 Max Preview API가 지원하는 요청 파라미터입니다. 필드를 생략하면 기본값이 적용됩니다.

파라미터유형기본값범위 / 값설명
temperaturenumber0.70 ~ 2샘플링 온도
top_pnumber10 ~ 1핵 샘플링
max_tokensnumber40961 ~ 65536최대 출력 토큰
frequency_penaltynumber0-2 ~ 2토큰을 반복하면 벌칙이 있습니다. >0은 반복을 줄이고, <0은 반복을 장려합니다.
presence_penaltynumber0-2 ~ 2새 토큰과 본 토큰에 대한 페널티. >0은 새로운 주제를 장려하고, <0은 주제에 집중하도록 권장합니다.
stopstring--쉼칸 구분 파인 파톱 시퀀스
reasoning_effortenummediumnone, low, medium, high, max추론 노력 수준. 어떤 것도 사고를 막지 못한다. 로우, 미디엄, 하이, 최대는 선택한 모델에 맞춘 제한된 사고 예산을 설정합니다. OpenAI 스타일의 reasoning_effort 필드로 전송되었고, 모델 서비스에 대한 enable_thinking와 thinking_budget로 번역되었습니다.
enable_thinkingbooleantrue-답변하기 전에 이유를 step-by-step
thinking_budgetnumber327681 ~ 393216생각을 위한 토큰들
tool_web_searchbooleanfalse-실시간 정보를 웹에서 검색하세요.
response_formatenum--출력을 유효한 JSON 객체(JSON 모드)로 반환합니다. 프롬프트에 원하는 필드를 설명하세요.
disable_formattingbooleanfalse-EmpirioLabs 마크다운 서식(인용 [[N]](URL) 재작성 + 웹 검색 도구 사용 시 참조 차단)은 건너뛸 수 있습니다. 평범한 [N] 인용이 포함된 원시 상류 답변이 반환됩니다.

알아두면 좋은 점

가격은 128K 토큰의 위 ~1.5x입니다. 이 미리보기에서만 일반 텍스트 기능; 아직 활성화되지 않습니다.

Per-tool billing (usage.tool_usage)

When this model invokes tools (web search, code interpreter, etc.) inside a single request, the response carries a normalized usage.tool_usage map alongside the token counts. The example below shows the shape — exact field names, units, and which tools appear can vary slightly per provider:

"usage": {
  "prompt_tokens": 123,
  "completion_tokens": 456,
  "cost_usd": 0.0042,
  "tool_usage": {"web_search": 3, "code_interpreter": 1}
}

The tool counts are already factored into cost_usd — they are surfaced for transparency so you can audit per-tool billing. The field is omitted when no tools were invoked.

Qwen3.6 Max Preview API: 자주 묻는 질문

Qwen3.6 Max Preview API 비용은 얼마인가요?

EmpirioLabs에서 Qwen3.6 Max Preview은(는) 종량제로 청구됩니다. 이 페이지의 실시간 요금표는 항상 API 청구 금액과 일치합니다.

Qwen3.6 Max Preview의 컨텍스트 윈도우는 얼마인가요?

Qwen3.6 Max Preview은(는) 256K 토큰 컨텍스트 윈도우를 지원합니다 (응답당 최대 65,536 출력 토큰).

Qwen3.6 Max Preview API는 OpenAI와 호환되나요?

네. Qwen3.6 Max Preview은(는) OpenAI 호환 Chat Completions API를 제공하므로, 기존 OpenAI SDK에서 base_urlhttps://api.empiriolabs.ai/v1로 지정하고 모델 ID를 qwen3-6-max-preview로 설정하면 바로 동작합니다.

통합하기 전에 브라우저에서 Qwen3.6 Max Preview을(를) 사용해 볼 수 있나요?

네. EmpirioLabs 플레이그라운드에서 API와 동일한 파라미터로 Qwen3.6 Max Preview을(를) 브라우저에서 실행하므로 코드를 작성하기 전에 프롬프트를 테스트할 수 있습니다.

Qwen3.6 Max Preview API 키는 어떻게 발급받나요?

EmpirioLabs 계정을 만든 다음 대시보드의 API Keys에서 키를 생성하세요. 요금은 종량제 크레딧이라 실행한 요청에 대해서만 결제합니다.

더 나은 엔드포인트를 사용할 준비가 되셨나요?

저희 가격을 확인하시거나 저희 스택에 자체 모델을 배포하고 싶으시면 연락해 주세요.