Qwen
Qwen ข้อความ

adminsgehdt/qwen-image-max

Model ID: adminsgehdt/qwen-image-max
ตระกูล
Qwen
บริบท
ไม่ระบุ
ต่อคำขอ
1.495 ฿
คำขอ
39
สำเร็จ
94.9%
โทเค็น
3.1K
เวลาใช้งาน
24 ชม. ที่แล้วตอนนี้
7 วันที่แล้วตอนนี้

ราคา

ต่อคำขอ
1.495 ฿
ประวัติราคา

ระดับราคาที่เคยใช้ แถวที่ระบุ "ปัจจุบัน" คือราคาจริง

ปัจจุบัน ตั้งแต่ 04/08/2026 - 13:15:09
ต่อคำขอ1.495 ฿ Cache read / 1M token0.136 ฿ Cache write / 1M token1.02 ฿
Endpoint ที่รองรับ
https://api.xah.io/v1/images/edits
เมธอด POST · application/json
การยืนยันตัวตน Bearer token (คีย์ API)
ประเภท API ข้อความ

แบ่งปัน

curl 'https://api.xah.io/v1/images/edits' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -F 'model=adminsgehdt/qwen-image-max' \
  -F 'prompt=Make the reference image brighter' \
  -F 'image=@./reference-1024.png'
// Node.js 18+ / Browser
const form = new FormData();
form.append('model', 'adminsgehdt/qwen-image-max');
form.append('prompt', 'Make the reference image brighter');
form.append('image', file); // File/Blob from ./reference-1024.png
const res = await fetch('https://api.xah.io/v1/images/edits', {
  method: 'POST',
  headers: { 'Authorization': 'Bearer YOUR_API_KEY' },
  body: form
});
console.log(await res.json());
import requests

url = 'https://api.xah.io/v1/images/edits'
headers = {'Authorization': 'Bearer YOUR_API_KEY'}
data = {
    "model": "adminsgehdt/qwen-image-max",
    "prompt": "Make the reference image brighter"
}
with open('./reference-1024.png', 'rb') as media:
    files = {'image': media}
    res = requests.post(url, headers=headers, data=data, files=files, timeout=180)
print(res.status_code, res.json())
{
    "model": "adminsgehdt/qwen-image-max",
    "prompt": "Make the reference image brighter",
    "_file_field": "image",
    "_file_path": "./reference-1024.png"
}
ลองใช้

โมเดลนี้ไม่รองรับแชทข้อความ จึงไม่สามารถลองใช้งานที่นี่ได้

รีวิวและความคิดเห็น
0.0 / 0 รีวิว
กำลังโหลดรีวิว...
ติดต่อฝ่ายสนับสนุน
เราพร้อมช่วยเหลือคุณเสมอ