Noromaid 20B

Other chat

API ID: neversleep/noromaid-20b

Input Price
$1.00
/1M tokens
Output Price
$1.75
/1M tokens

About Noromaid 20B

Noromaid is NeverSleep's creative model series, designed for narrative generation and roleplay applications. The models excel at storytelling, character dialogue, and creative content generation. Noromaid variants include Mixtral-based versions for enhanced capability. The series is popular for interactive fiction and creative writing tools. For developers building narrative AI applications, Noromaid offers focused creative capability.

๐Ÿ’ฐ
Price Ranking
#832 lowest price among 950 Chat models

Model Specifications

Context Length
8k
Max Output
โ€”
Release Date
2023-11-26
Capabilities
chat
Input Modalities
text
Output Modalities
text

Best For

  • Conversations, content writing, general assistance

Consider Alternatives For

  • Image understanding (needs vision capability)

๐Ÿ’ฐ Real-World Cost Examples

Estimated monthly costs for common use cases

Personal AI Assistant
$0.98
/month
50 conversations/day, ~500 tokens each
Customer Service Bot
$30.75
/month
1000 tickets/day, ~800 tokens each

Other Model Lineup

Compare all models from Other to find the best fit

Model Input Output Context Capabilities
Noromaid 20B Current Free Free 8k chat
Riverflow V2 Max Preview Free Free 8k chat vision image_gen
Riverflow V2 Standard Preview Free Free 8k chat vision image_gen
Riverflow V2 Fast Preview Free Free 8k chat vision image_gen
AFM 4.5B Free Free 66k chat
AFM 4.5B Free Free 66k chat

Similar Models from Other Providers

Cross-brand alternatives with similar capabilities

Moonshot AI Kimi K2 0711
Input: $0.55
Output: $2.20
Context: 131k
Google Gemini 2.5 Flash Image (Nano Banana)
Input: $0.30
Output: $2.50
Context: 33k
Google Gemini 2.5 Flash Image Preview (Nano Banana)
Input: $0.30
Output: $2.50
Context: 33k
Amazon Nova 2 Lite
Input: $0.30
Output: $2.50
Context: 1.0M

๐Ÿš€ Quick Start

Get started with Noromaid 20B API

OpenAI-compatible SDK
from openai import OpenAI

client = OpenAI(
    base_url="https://api.provider.com/v1",
    api_key="YOUR_API_KEY"
)

response = client.chat.completions.create(
    model="neversleep/noromaid-20b",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)
print(response.choices[0].message.content)