Qwen
Qwen Text

adminsgehdt/qwen-image-max

Model ID: adminsgehdt/qwen-image-max
Rodzina
Qwen
Kontekst
Nie określono
Za request
0.159 zł
Liczba użyć
39
Sukces
94.9%
Tokeny
3.1K
Uptime
24 godz. temuTeraz
7 dni temuTeraz

Cennik

Za request
0.159 zł
Historia cen

Poziomy cen stosowane wcześniej. Wiersz oznaczony jako „bieżący” to cena obowiązująca.

Bieżąca Od 04/08/2026 - 13:15:09
Za request0.159 zł Odczyt cache / 1M tokenów0.0144 zł Zapis cache / 1M tokenów0.108 zł
Obsługiwane endpointy
https://api.xah.io/v1/images/edits
Metoda POST · application/json
Autoryzacja Bearer token (klucz API)
Rodzaje API Text

Udostępnij

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"
}
Wypróbuj

Ten model nie obsługuje czatu tekstowego, więc nie można go tutaj wypróbować.

Oceny i komentarze
0.0 / 0 ocen
Ładowanie ocen...
Skontaktuj się z pomocą
Zawsze jesteśmy gotowi, aby Ci pomóc