cuong5a115a11/Qwen3-embedding-8b
پہلے لاگو کردہ قیمت کی سطحیں۔ "موجودہ" کے لیبل والی قطار فی الحال چلنے والی قیمت ہے۔
تخمینہ فہرست کی قیمتوں پر مبنی ہے۔ کیشنگ عام طور پر اسے سستا بناتی ہے۔
https://api.xah.io/v1/embeddings
curl 'https://api.xah.io/v1/embeddings' \
-H 'Authorization: Bearer YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{
"model": "cuong5a115a11/Qwen3-embedding-8b",
"input": "The quick brown fox jumps over the lazy dog"
}'
// Node.js / Browser
const res = await fetch('https://api.xah.io/v1/embeddings', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
"model": "cuong5a115a11/Qwen3-embedding-8b",
"input": "The quick brown fox jumps over the lazy dog"
})
});
const data = await res.json();
console.log(data);
import requests
url = 'https://api.xah.io/v1/embeddings'
headers = {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json',
}
payload = {
"model": "cuong5a115a11/Qwen3-embedding-8b",
"input": "The quick brown fox jumps over the lazy dog"
}
res = requests.post(url, headers=headers, json=payload, timeout=120)
print(res.status_code, res.json())
{
"model": "cuong5a115a11/Qwen3-embedding-8b",
"input": "The quick brown fox jumps over the lazy dog"
}
اس ماڈل میں ٹیکسٹ چیٹ سپورٹ نہیں ہے، اس لیے اسے یہاں آزمایا نہیں جا سکتا۔