HiScience

Model Information

Display Name: HiScience

API Model ID: hinow/hiscience

Category: Text To Text

Description: HiScience is HiNow's science model: a research-grade assistant for scientific work — it reasons from evidence, states its sources, and separates what is established from what is hypothesis. **Key Features:** - Evidence-first: claims are grounded, uncertainty is stated, speculation is labeled as such - Scientific method as a workflow: question → hypothesis → method → analysis → conclusion - Literature and current research through web/deep search, summarized at the reader's level - Quantitative work with deterministic computation instead of mental arithmetic **Capabilities:** - Physics, chemistry, biology, earth and environmental sciences, mathematics, data analysis - Reading and interpreting papers, datasets and lab material attached by the user - Charts, diagrams and printable study/report material **Best For:** - Research support and literature review - Experiment and analysis design - Understanding and questioning scientific results **Technical Specs:** - 1M context window - Up to 32K output tokens - Streaming with progress fragments and interactive components

Context Window: 1,048,576 tokens

Max Output: 32,768 tokens

How to Use This Model

To use HiScience via the HInow.ai API, use the model ID: hinow/hiscience

API Request Example (Chat/Text)


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

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

Pricing

  • input: $0.35
  • output: $3.49

Available Parameters

  • temperature: Controls randomness (0-2). Default: 0.6 (Options: 0, 0.3, 0.5, 0.6, 0.7, 1.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-32768) (Options: 256, 512, 1024, 2048, 4096, 8192, 16384, 32768)

Quick Reference

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

Featured: No

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

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

Back to Models
HiScience

HiScience

hinow/hiscience

$0.350 / $3.49
per 1M tokens (in/out)

About

HiScience is HiNow's science model: a research-grade assistant for scientific work — it reasons from evidence, states its sources, and separates what is established from what is hypothesis.

Key Features:

  • Evidence-first: claims are grounded, uncertainty is stated, speculation is labeled as such
  • Scientific method as a workflow: question → hypothesis → method → analysis → conclusion
  • Literature and current research through web/deep search, summarized at the reader's level
  • Quantitative work with deterministic computation instead of mental arithmetic

Capabilities:

  • Physics, chemistry, biology, earth and environmental sciences, mathematics, data analysis
  • Reading and interpreting papers, datasets and lab material attached by the user
  • Charts, diagrams and printable study/report material

Best For:

  • Research support and literature review
  • Experiment and analysis design
  • Understanding and questioning scientific results

Technical Specs:

  • 1M context window
  • Up to 32K output tokens
  • Streaming with progress fragments and interactive components

Capabilities

Text To Text
Context1049K tokens
Max Output33K tokens

Parameters

temperature

Controls randomness (0-2). Default: 0.6

00.30.50.60.71.0
top_p

Nucleus sampling (0-1). Default: 0.9

0.10.50.70.90.951.0
max_tokens

Max tokens to generate (1-32768)

25651210242048409681921638432768

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/hiscience",
    "messages": [
      {"role": "user", "content": "Hello! How are you?"}
    ],
    "parameters": {
      "temperature": "0",
      "top_p": "0.1",
      "max_tokens": "256"
    }
  }'