An advanced chat model with a 1,048,576 token context window. As a "thinking" model, it reasons stepwise before responding, increasing transparency into its reasoning process.
Context Window
2000k tokens
Pricing (Input / Output)
$0.1 / $0.4 per 1M
Throughput
274 tps
Architecture
Transformer-based multimodal
Modality
Text, Image, Video, Audio
Knowledge Cutoff
March 2025
curl -X POST https://api.neuralhub.xyz/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer NEURALHUB_API_KEY" \
-d '{
"model": "google/gemini-2.5-flash",
"messages": [
{ "role": "system", "content": "You are a helpful assistant." },
{ "role": "user", "content": "" }
],
"temperature": 0.7,
"max_tokens": 500,
"top_p": 0.9
}'The API returns an OpenAI-compatible response. Example:
{
"id": "chatcmpl-<uuid>",
"object": "chat.completion",
"created": 1764849298,
"model": "google/gemini-2.5-flash",
"choices": [
{
"index": 0,
"message": {
"role": "assistant",
"content": "The answer to life, the universe, and everything is famously 42..."
},
"finish_reason": "stop"
}
],
"usage": {
"prompt_tokens": 26,
"completion_tokens": 169,
"total_tokens": 195
}
}