Alibaba
Qwen 3.6 Plus
Geniş context ve güçlü reasoning, kurumsal kullanım için
Input 800 kredi/1M token
Output 2.000 kredi/1M token
Hakkında
Qwen 3.6 Plus, Alibaba tarafından geliştirilen en yeni flagship yapay zeka modelidir. 1M token bağlam penceresi, gelişmiş reasoning ve çoklu dil desteği sunar. Vision (görsel anlama) yeteneği ile multimodal görevlerde güçlü performans sağlar. MoE mimarisi verimlilik ve kalite arasında mükemmel denge kurar. Parel API ile Türkçe kurumsal projelerde uzun doküman analizi ve çok dilli senaryolarda kullanılabilir.
Kullanım Alanları
- › Chatbot ve müşteri destek otomasyonu
- › İçerik üretimi ve metin özeti
- › Görsel analiz ve belge okuma (OCR)
- › Karmaşık mantık ve adım adım çözüm gerektiren görevler
- › RAG (Retrieval-Augmented Generation) sistemleri
- Provider
- Alibaba
- Tür
- LLM
- Context
- 1M token
- Model ID
- qwen3.6-plus
- Input Fiyat
- 800 kredi/1M token
- Output Fiyat
- 2.000 kredi/1M token
Benzer Modeller
OpenAI SDK ile dakikalar içinde entegre edin.
Authentication #
API anahtarınızı ortam değişkeni olarak tanımlayın.
import os
os.environ["OPENAI_API_KEY"] = "pk-..."Kurulum #
OpenAI SDK'yi yükleyin.
pip install openaiChat Completions #
Temel sohbet tamamlama isteği.
from openai import OpenAI
client = OpenAI(
base_url="https://api.parel.cloud/v1",
api_key="pk-...",
)
response = client.chat.completions.create(
model="qwen3.6-plus",
messages=[
{"role": "user", "content": "Merhaba!"}
],
)
print(response.choices[0].message.content)Streaming #
Yanıtları token token akın halinde alın.
from openai import OpenAI
client = OpenAI(
base_url="https://api.parel.cloud/v1",
api_key="pk-...",
)
stream = client.chat.completions.create(
model="qwen3.6-plus",
messages=[
{"role": "user", "content": "Türkiye'nin başkenti neresidir?"}
],
stream=True,
)
for chunk in stream:
content = chunk.choices[0].delta.content
if content:
print(content, end="", flush=True)System Prompt #
Modelin davranisini system mesajiyla yonlendirin.
from openai import OpenAI
client = OpenAI(
base_url="https://api.parel.cloud/v1",
api_key="pk-...",
)
response = client.chat.completions.create(
model="qwen3.6-plus",
messages=[
{
"role": "system",
"content": "Sen yardimci bir Turkce asistansin. Kisa ve net cevaplar ver."
},
{
"role": "user",
"content": "KVKK nedir?"
}
],
)
print(response.choices[0].message.content)Parametreler #
Yanıt kalitesini ve çeşitliliğini ayarlayın.
from openai import OpenAI
client = OpenAI(
base_url="https://api.parel.cloud/v1",
api_key="pk-...",
)
response = client.chat.completions.create(
model="qwen3.6-plus",
messages=[
{"role": "user", "content": "Yaratici bir hikaye yaz."}
],
temperature=0.9, # 0-2: dusuk = deterministik, yuksek = yaratici
max_tokens=2048, # maksimum cikti token sayisi
top_p=0.95, # nucleus sampling esigi
)
print(response.choices[0].message.content)Kayıt olun, API anahtarınızı alın.