HiNova

Model Information

Display Name: HiNova

API Model ID: hinow/hinova

Category: Text To Text

Description: Hinova is Hinow's large language model, featuring state-of-the-art reasoning capabilities with 235B parameters in a Mixture-of-Experts architecture. **Key Features:** - 128K+ token context window - Advanced MoE architecture (235B total, 22B active) - Function calling and tool use - Structured outputs (JSON) - Multilingual support (100+ languages) - Top-tier benchmark performance **Capabilities:** - Complex reasoning and analysis - Advanced mathematics and logic - Code generation and debugging - Creative writing and content - Multi-turn conversations - Research and summarization **Best For:** - Enterprise AI applications - Complex reasoning tasks - High-stakes decision support - Research and analysis - Premium user experiences **Technical Specs:** - Parameters: 235B (22B active) - Architecture: Mixture-of-Experts - Context: 128K tokens - License: Hinow Enterprise

Context Window: 131,072 tokens

Max Output: 16,384 tokens

How to Use This Model

To use HiNova via the HInow.ai API, use the model ID: hinow/hinova

API Request Example (Chat/Text)


POST https://api.hinow.ai/v1/chat/completions
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

{
  "model": "hinow/hinova",
  "messages": [
    {"role": "user", "content": "Your message here"}
  ]
}
              

Pricing

  • input: $0.75
  • output: $7.50

Available Parameters

  • temperature: Controls randomness (0-2). Default: 0.7 (Options: 0, 0.3, 0.5, 0.7, 1.0, 1.5, 2.0)
  • top_p: Nucleus sampling (0-1). Default: 0.9 (Options: 0.1, 0.5, 0.7, 0.9, 0.95, 1.0)
  • max_tokens: Max tokens to generate (1-16384) (Options: 256, 512, 1024, 2048, 4096, 8192, 16384)
  • repetition_penalty: Reduce repetition (0.01-5). Default: 1 (Options: 1.0, 1.1, 1.2, 1.5, 2.0)
  • response_format: Output format (Options: text, json_object)
  • stop: Stop sequences (array of strings)

Quick Reference

To use this model, set: "model": "hinow/hinova"

Featured: Yes

Documentation: https://hinow.ai/models/hinow/hinova

API Endpoint: https://api.hinow.ai/v1

Back to Models

HiNova

Featured

hinow/hinova

$0.750 / $7.50
per 1M tokens (in/out)

About

Hinova is Hinow's large language model, featuring state-of-the-art reasoning capabilities with 235B parameters in a Mixture-of-Experts architecture.

Key Features:

  • 128K+ token context window
  • Advanced MoE architecture (235B total, 22B active)
  • Function calling and tool use
  • Structured outputs (JSON)
  • Multilingual support (100+ languages)
  • Top-tier benchmark performance

Capabilities:

  • Complex reasoning and analysis
  • Advanced mathematics and logic
  • Code generation and debugging
  • Creative writing and content
  • Multi-turn conversations
  • Research and summarization

Best For:

  • Enterprise AI applications
  • Complex reasoning tasks
  • High-stakes decision support
  • Research and analysis
  • Premium user experiences

Technical Specs:

  • Parameters: 235B (22B active)
  • Architecture: Mixture-of-Experts
  • Context: 128K tokens
  • License: Hinow Enterprise

Capabilities

Text To Text
Context131K tokens
Max Output16K tokens

Parameters

temperature

Controls randomness (0-2). Default: 0.7

00.30.50.71.01.52.0
top_p

Nucleus sampling (0-1). Default: 0.9

0.10.50.70.90.951.0
max_tokens

Max tokens to generate (1-16384)

256512102420484096819216384
repetition_penalty

Reduce repetition (0.01-5). Default: 1

1.01.11.21.52.0
response_format

Output format

textjson_object
stop

Stop sequences (array of strings)

Code Examples

curl -X POST https://api.hinow.ai/v1/responses \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $HINOW_API_KEY" \
  -d '{
    "model": "hinow/hinova",
    "messages": [
      {"role": "user", "content": "Hello! How are you?"}
    ],
    "parameters": {
      "temperature": "0",
      "top_p": "0.1",
      "max_tokens": "256",
      "repetition_penalty": "1.0",
      "response_format": "text",
      "stop": ""
    }
  }'