Qwen
Qwen Text

adminsgehdt/qwen-image-max

ID modello: adminsgehdt/qwen-image-max
Famiglia
Qwen
Context
Non specificato
Per request
0.0378 €
Request
39
Successo
94.9%
Tokens
3.1K
Uptime
24 ore faAdesso
7 giorni faAdesso

Listino prezzi

Per request
0.0378 €
Cronologia prezzi

I livelli di prezzo applicati nel tempo. La riga contrassegnata "attuale" è il prezzo in uso.

Attuale Dal 04/08/2026 - 13:15:09
Per request0.0378 € Cache lettura / 1M token0.00344 € Cache scrittura / 1M token0.0258 €
Endpoint supportati
https://api.xah.io/v1/images/edits
Metodo POST · application/json
Autenticazione Bearer token (API key)
Tipi di API Text

Condividi

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"
}
Prova subito

Questo modello non supporta la chat testuale, quindi non può essere provato qui.

Recensioni e commenti
0.0 / 0 recensioni
Caricamento delle recensioni...
Contatta il supporto
Siamo sempre pronti ad aiutarla