SorcererLM 8x22B

Other chat

API ID: raifle/sorcererlm-8x22b

Input Price
$4.50
/1M tokens
Output Price
$4.50
/1M tokens

About SorcererLM 8x22B

SorcererLM is Raifle's large model based on Mixtral architecture, delivering strong performance on diverse tasks. The model excels at reasoning, creative writing, and general language tasks. SorcererLM demonstrates effective use of MoE architecture. For developers seeking capable MoE-based AI, SorcererLM offers strong performance.

๐Ÿ’ฐ
Price Ranking
#1109 lowest price among 1240 Chat models

Model Specifications

Context Length
16k
Max Output
โ€”
Release Date
2024-11-08
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
$3.38
/month
50 conversations/day, ~500 tokens each
Customer Service Bot
$108.00
/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
SorcererLM 8x22B Current Free Free 16k 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

Google Gemini 3.6 Flash
Input: $1.50
Output: $7.50
Context: 1.0M
Aion Labs Aion-3.0
Input: $3.00
Output: $6.00
Context: 131k
Mistral Mistral Medium 3.5
Input: $1.50
Output: $7.50
Context: 262k
Google Google Gemini Flash Latest
Input: $1.50
Output: $7.50
Context: 1.0M

๐Ÿš€ Quick Start

Get started with SorcererLM 8x22B 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="raifle/sorcererlm-8x22b",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)
print(response.choices[0].message.content)