Why pick it
- Access is enabled only after workspace setup or commercial review.
- Pricing appears only when verified by the live service catalog.
BAAI
bge-m3
BGE-M3 is available after commercial review or workspace setup.
Params
568M
Context
8K
Max Output
N/A
License
MIT
API Surface
/v1/embeddings
Access
Access review
Why pick it
Pricing
Quick start
This model is not yet open for public testing. Contact the team for the right access path.
from openai import OpenAI
client = OpenAI(
base_url="https://api.batchin.tech/v1",
api_key="BATCHIN_API_KEY"
)
resp = client.embeddings.create(
model="bge-m3",
input=["BatchIn inference platform"]
)
print(resp.data[0].embedding[:8])import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.batchin.tech/v1",
apiKey: process.env.BATCHIN_API_KEY,
});
const resp = await client.embeddings.create({
model: "bge-m3",
input: ["BatchIn inference platform"],
});
console.log(resp.data[0]?.embedding?.slice(0, 8));curl https://api.batchin.tech/v1/embeddings \ -H "Authorization: Bearer ***" \ -H "Content-Type: application/json" \ -d '{
"model": "bge-m3",
"input": ["BatchIn inference platform"]
}'Specs
Architecture
Encoder Transformer
Vendor
BAAI
Context window
8K
Max output
N/A
Best for
Related models
Back to model center