Weaver (alpha)

Other chattool_use

API ID: mancer/weaver

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

About Weaver (alpha)

Weaver is Mancer's creative model, optimized for narrative generation and storytelling. The model excels at creative writing, character development, and engaging narratives. Weaver demonstrates strong creative capability for fiction applications. For developers building creative writing tools, Weaver offers focused narrative generation.

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

Model Specifications

Context Length
8k
Max Output
2k
Release Date
2023-08-02
Capabilities
chat tool_use
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.64
/month
50 conversations/day, ~500 tokens each
Customer Service Bot
$20.25
/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
Weaver (alpha) Current Free Free 8k chat tool_use
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

xAI Grok Code Fast 1
xAI
Input: $0.20
Output: $1.50
Context: 256k
Alibaba Qwen Qwen3 VL 30B A3B Thinking
Input: $0.13
Output: $1.56
Context: 131k
Baidu ERNIE 4.5 VL 424B A47B
Input: $0.42
Output: $1.25
Context: 123k
Zhipu AI GLM 4.6 (exacto)
Input: $0.35
Output: $1.50
Context: 205k

๐Ÿš€ Quick Start

Get started with Weaver (alpha) 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="mancer/weaver",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)
print(response.choices[0].message.content)