A high-performance generative model optimized for chat, text generation, and complex reasoning. Features built-in tool use and large context support.
Context Window
1000k tokens
Pricing (Input / Output)
$0.1 / $0.4 per 1M
Architecture
Transformer-based multimodal
Modality
Text, Image, Video, Audio
Knowledge Cutoff
June 2024
The API returns an OpenAI-compatible response. Example:
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.0-flash-001",
"messages": [
{ "role": "system", "content": "You are a helpful assistant." },
{ "role": "user", "content": "" }
],
"temperature": 0.7,
"max_tokens": 500,
"top_p": 0.9
}'{
"id": "chatcmpl-<uuid>",
"object": "chat.completion",
"created": 1764849296,
"model": "google/gemini-2.0-flash-001",
"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
}
}