HiSchool

Model Information

Display Name: HiSchool

API Model ID: hinow/hischool

Category: Text To Text

Description: HiSchool is a Socratic tutor that helps students learn by thinking — it never gives final answers. It guides with questions, confirms correct reasoning with reasons, and adapts to the student's language, school system and level. **Key Features:** - Socratic method: one guiding question at a time, progressive hints, never the answer - Global: adapts treatment to the student's language and school system (BNCC, Common Core, GCSE, gaokao…) - Interactive quizzes and exams with server-side grading (answers never leak to the client) - Open-text questions evaluated against rubrics, with specific feedback **Capabilities:** - Math, sciences, humanities, essay coaching, programming - Pedagogical state detection: new problem, attempt, stuck, asking for the answer - Mock exams with single/multiple choice, true/false and written questions **Best For:** - Homework guidance without cheating - Exam preparation (quizzes, mock tests) - Understanding concepts deeply **Technical Specs:** - 131K context window - Up to 16K output tokens - Streaming with progress fragments and interactive components

Context Window: 131,072 tokens

Max Output: 16,384 tokens

How to Use This Model

To use HiSchool via the HInow.ai API, use the model ID: hinow/hischool

API Request Example (Chat/Text)


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

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

Pricing

  • input: $0.75
  • output: $5.50

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-16384) (Options: 256, 512, 1024, 2048, 4096, 8192, 16384)

Quick Reference

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

Featured: Yes

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

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

Back to Models

HiSchool

Featured

hinow/hischool

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

About

HiSchool is a Socratic tutor that helps students learn by thinking — it never gives final answers. It guides with questions, confirms correct reasoning with reasons, and adapts to the student's language, school system and level.

Key Features:

  • Socratic method: one guiding question at a time, progressive hints, never the answer
  • Global: adapts treatment to the student's language and school system (BNCC, Common Core, GCSE, gaokao…)
  • Interactive quizzes and exams with server-side grading (answers never leak to the client)
  • Open-text questions evaluated against rubrics, with specific feedback

Capabilities:

  • Math, sciences, humanities, essay coaching, programming
  • Pedagogical state detection: new problem, attempt, stuck, asking for the answer
  • Mock exams with single/multiple choice, true/false and written questions

Best For:

  • Homework guidance without cheating
  • Exam preparation (quizzes, mock tests)
  • Understanding concepts deeply

Technical Specs:

  • 131K context window
  • Up to 16K output tokens
  • Streaming with progress fragments and interactive components

Capabilities

Text To Text
Context131K tokens
Max Output16K 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-16384)

256512102420484096819216384

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