Qwen3.5 Plus
공급사 정가. 플랫폼 마진 없음, 종량제. 아래는 공식 정가입니다. 로그인한 고객은 /console/pricing 에서 워크스페이스 할인이 반영된 실제 가격을 볼 수 있습니다. 캐시 적중률 70% 기준 실효 입력 단가:$0.2005/M. 암시적 컨텍스트 캐시는 자동입니다; 명시적 cache_control 모드는 더 큰 할인을 제공합니다(1,024토큰 최소 블록, 적중 시 리셋되는 5분 TTL). 모델별 캐시 읽기 가격은 가격표에 있습니다.
30초 만에 Qwen3.5 Plus 사용하기
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="qwen3.5-plus",
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: "qwen3.5-plus",
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": "qwen3.5-plus",
"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: "qwen3.5-plus",
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("qwen3.5-plus")
.addUserMessage("Summarize this diff")
.reasoningEffort(ReasoningEffort.MEDIUM)
.build());
System.out.println(resp.choices().get(0).message().content().orElse(""));Qwen3.5 Plus 소개
Qwen3.5 Plus는 Qwen 팀의 “Towards Native Multimodal Agents”를 향한 걸음인 Qwen3.5 세대의 플래그십 호스팅 티어입니다.
- 게이티드 리니어 어텐션과 희소 Mixture-of-Experts를 짝지은 Qwen3-Next 아키텍처 위에 구축된 이 세대는 얼리 퓨전(early-fusion) 멀티모달 학습을 사용하고, 적응형 도구 호출 모드와 함께 추론·코딩·도구 사용 전반의 에이전트 능력을 강조합니다.
- 호스팅 Plus 티어는 기본으로 1M 토큰 컨텍스트 윈도우를 제공해 대형 문서와 롱 호라이즌 에이전트 워크로드에 적합합니다.
- Synthorai는 OpenAI 호환 API로 Qwen3.5 Plus 트래픽을 라우팅합니다.
스펙 및 제한
| 최대 출력(벤더 스펙) | 65,536 |
| 모달리티 | text + image + video → text |
| 파라미터 | 전체 397B · 활성 17B (MoE) |
| 기능 | tools · structured_output · streaming · vision · batch · reasoning · parallel_tool_calls · caching |
| 특기 사항 | Cloud-hosted counterpart of Qwen3.5-397B-A17B (native VLM, Gated-Delta linear attention + sparse MoE); 1M-token context by default, built-in tools, 201 languages; hybrid thinking on by default. |
| 프롬프트 캐싱 | 자동 + 명시적 · TTL explicit: 5m, reset on hit |
출처: Alibaba 공식 문서 ↗
자주 묻는 질문
Qwen3.5 Plus API는 무료로 사용해 볼 수 있나요?
네, 신규 계정에는 10회의 체험 호출과 최대 $1의 무료 크레딧이 제공되며, 카드 등록이 필요 없습니다. 입력 토큰 $0.4/M 기준으로, 이 크레딧만으로도 Qwen3.5 Plus에 약 8K 토큰 규모의 요청을 대략 312회 보낼 수 있습니다.
Qwen3.5 Plus은(는) 무엇에 가장 강한가요?
얼리 퓨전 멀티모달 학습, 그리고 적응형 도구 호출 모드 및 기본 1M 토큰 컨텍스트 윈도우. 전체 내용은 벤더의 공식 릴리스 노트를 정리한 About 섹션을 참고하세요.
Qwen3.5 Plus의 가격은 얼마인가요?
Synthorai에서 Qwen3.5 Plus은(는) 입력 토큰 100만 개당 $0.4, 출력 토큰 100만 개당 $2.4입니다. 공급사 정가 그대로이며 플랫폼 마진이 없습니다. 캐시된 입력 토큰은 $0.115/M로 과금됩니다.
Qwen3.5 Plus은(는) 프롬프트 캐싱을 지원하나요?
네, 자동 캐싱이 기본으로 켜져 있고, 확정적 절감을 위한 명시적 모드도 있습니다. 캐시된 입력 토큰은 $0.115/M로 과금됩니다(미캐시 시 $0.4/M) (TTL explicit: 5m, reset on hit). 프롬프트 캐싱 가이드 →
Qwen3.5 Plus은(는) 어떻게 이용하나요?
기존 OpenAI SDK의 base_url을 "https://synthorai.io/v1"로 지정하고 model="qwen3.5-plus"로 설정하면 끝입니다. API 키 하나로 게이트웨이의 모든 모델을 사용할 수 있습니다.