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
#886 lowest price among 950 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

Meta Llama 3.1 405B (base)
Input: $4.00
Output: $4.00
Context: 33k
Mistral Mixtral 8x22B Instruct
Input: $2.00
Output: $6.00
Context: 66k
OpenAI GPT-4.1
Input: $2.00
Output: $8.00
Context: 1.0M
Mistral Mistral Large 2411
Input: $2.00
Output: $6.00
Context: 131k

๐Ÿš€ 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)