HiNow Fast

Model Information

Display Name: HiNow Fast

API Model ID: hinow/fast

Category: Text To Text

Description: HiNow Fast is a quick, smart assistant that first understands what you want — a question, a web search, an image, or code — and then handles it with the right engine, optimized for speed. **Key Features:** - Automatic intent detection (chat, search, image, code) - Routes each request to the best-fit engine - Optimized for low latency **Best For:** - Everyday assistant use - Mixed requests (ask, search, create) in one place - Fast, direct answers

Context Window: 262,144 tokens

Max Output: 16,384 tokens

How to Use This Model

To use HiNow Fast via the HInow.ai API, use the model ID: hinow/fast

API Request Example (Chat/Text)


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

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

Pricing

  • input: $0.18
  • output: $0.64

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-8192) (Options: 256, 512, 1024, 2048, 4096, 8192)
  • response_format: Output format (Options: text, json_object)

Quick Reference

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

Featured: Yes

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

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

Back to Models
HiNow Fast

HiNow Fast

Featured

hinow/fast

$0.180 / $0.640
per 1M tokens (in/out)

About

HiNow Fast is a quick, smart assistant that first understands what you want — a question, a web search, an image, or code — and then handles it with the right engine, optimized for speed.

Key Features:

  • Automatic intent detection (chat, search, image, code)
  • Routes each request to the best-fit engine
  • Optimized for low latency

Best For:

  • Everyday assistant use
  • Mixed requests (ask, search, create) in one place
  • Fast, direct answers

Capabilities

Text To Text
Context262K 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-8192)

2565121024204840968192
response_format

Output format

textjson_object

Code Examples

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