Mistral
Mistral Text

giangnguyenwp2904/mistral-small-3.1-24b-instruct

Model ID: giangnguyenwp2904/mistral-small-3.1-24b-instruct
Rodzina
Mistral
Kontekst
128,000
Minimalna opłata / request
0.000565 zł
Liczba użyć
0
Sukces
—
Tokeny
0
Uptime
24 godz. temuTeraz
7 dni temuTeraz

Cennik

Input / 1M tokenów
0.0376 zł
Output / 1M tokenów
0.0753 zł
Minimalna opłata / request
0.000565 zł
Historia cen

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

Bieżąca Od 26/09/2026 - 23:07:49
Input / 1M tokenów0.0376 zł Output / 1M tokenów0.0753 zł Minimalna opłata / request0.000565 zł
Kalkulator kosztów
Szacowana suma 0 zł
Średnio / request 0 zł

Szacunek na podstawie cen cennikowych. Cache zwykle obniża koszty.

Obsługiwane endpointy
https://api.xah.io/v1/chat/completions
https://api.xah.io/v1/completions
https://api.xah.io/v1/messages
https://api.xah.io/v1/responses
https://api.xah.io/v1beta/models/giangnguyenwp2904/mistral-small-3.1-24b-instruct:generateContent
https://api.xah.io/api/chat
https://api.xah.io/api/generate
Metoda POST · application/json
Autoryzacja Bearer token (klucz API)
Przetestowane obciążenie 🟢 Wysoki peak 37/s · sustained 14.5/s
Opóźnienie p95 3,503 ms
Rodzaje API Text

Udostępnij

curl 'https://api.xah.io/v1/chat/completions' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "model": "giangnguyenwp2904/mistral-small-3.1-24b-instruct",
    "messages": [
        {
            "role": "user",
            "content": "Cześć, kim jesteś?"
        }
    ]
}'
// Node.js / Browser
const res = await fetch('https://api.xah.io/v1/chat/completions', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    "model": "giangnguyenwp2904/mistral-small-3.1-24b-instruct",
    "messages": [
        {
            "role": "user",
            "content": "Cześć, kim jesteś?"
        }
    ]
})
});
const data = await res.json();
console.log(data);
import json, requests

url = 'https://api.xah.io/v1/chat/completions'
headers = {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json',
}
payload = json.loads("{\n    \"model\": \"giangnguyenwp2904/mistral-small-3.1-24b-instruct\",\n    \"messages\": [\n        {\n            \"role\": \"user\",\n            \"content\": \"Cześć, kim jesteś?\"\n        }\n    ]\n}")

res = requests.post(url, headers=headers, json=payload, stream=True, timeout=120)
print(res.status_code, res.json())
{
    "model": "giangnguyenwp2904/mistral-small-3.1-24b-instruct",
    "messages": [
        {
            "role": "user",
            "content": "Cześć, kim jesteś?"
        }
    ]
}

Wypróbuj

Wyślij prompt za pomocą swojego klucza API — zużywa realne środki, wynik jest streamowany natychmiast.

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