bge-m3

Other chattool_use

API ID: baai/bge-m3-20251117

Input Price
$0.01
/1M tokens
Output Price
Free
/1M tokens

About bge-m3

BGE M3 is BAAI's multilingual embedding model, supporting semantic search across 100+ languages with a single model. It generates embeddings that capture meaning regardless of language, enabling cross-lingual retrieval where queries in one language find relevant content in others. BGE M3 achieves strong performance on multilingual embedding benchmarks, demonstrating effective cross-lingual transfer. The model supports multiple retrieval modes including dense, sparse, and multi-vector representations. Its open weights enable self-hosting for organizations with multilingual content and data privacy requirements. For developers building global search applications, BGE M3 provides unified multilingual embedding without separate models per language. It's essential for international content platforms and multilingual knowledge bases.

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

Model Specifications

Context Length
8k
Max Output
โ€”
Release Date
2025-11-18
Capabilities
chat tool_use
Input Modalities
text
Output Modalities
embeddings

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.00
/month
50 conversations/day, ~500 tokens each
Customer Service Bot
$0.15
/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
bge-m3 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

Alibaba Qwen Qwen3 Embedding 8B
Input: $0.01
Output: Free
Context: 32k
Alibaba Qwen Qwen3 Embedding 8B
Input: $0.01
Output: Free
Context: 32k
OpenAI Text Embedding 3 Small
Input: $0.02
Output: Free
Context: 8k
Alibaba Qwen Qwen3 Embedding 4B
Input: $0.02
Output: Free
Context: 33k

๐Ÿš€ Quick Start

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