AnthropicPaidOperational
Netease Youdao/bce Reranker Base V1
API model name: netease-youdao/bce-reranker-base_v1
Netease Youdao/bce Reranker Base V1 is Anthropic's reranking model, served on the Api.Airforce unified API. It is priced at $0.01 per million input tokens and $0.01 per million output tokens. Access it through the OpenAI-compatible API with one key, alongside 100+ other models on Api.Airforce.
Pricing
Specifications
- Provider
- Anthropic
- Type
- reranking model
What is Netease Youdao/bce Reranker Base V1 used for?
- models.detail.useCases.rerank
Related models
Chat LatestAnthropic · $5.25 / 1MClaude 3.5 HaikuAnthropic · $0.47 / 1MClaude 3.5 SonnetAnthropic · $3.15 / 1MClaude 3.5 SonnetAnthropic · $3.15 / 1MClaude 3.7 SonnetAnthropic · $3.15 / 1MClaude 3 HaikuAnthropic · $0.21 / 1MClaude 3 HaikuAnthropic · $0.26 / 1MClaude 3 OpusAnthropic · $9.50 / 1MClaude Fable 5Anthropic · $7.00 / 1MClaude Fable 5.1Anthropic · $7.92 / 1MClaude Haiku 4.5Anthropic · $0.89 / 1MClaude Opus 4Anthropic · $15.00 / 1M
Netease Youdao/bce Reranker Base V1 — frequently asked questions
- How much does Netease Youdao/bce Reranker Base V1 cost?
- Netease Youdao/bce Reranker Base V1 is billed pay-as-you-go at $0.01 per 1M input tokens and $0.01 per 1M output tokens. There is no subscription — you only pay for what you use.
- What can Netease Youdao/bce Reranker Base V1 do?
- Netease Youdao/bce Reranker Base V1 is Anthropic's reranking model, accessible through the Api.Airforce API.
- Is Netease Youdao/bce Reranker Base V1 free to use?
- Netease Youdao/bce Reranker Base V1 is a paid, pay-as-you-go model — no subscription, you are only charged for usage.
- How do I use Netease Youdao/bce Reranker Base V1 via the API?
- Netease Youdao/bce Reranker Base V1 is OpenAI-compatible. Point any OpenAI SDK at https://api.airforce/v1 and pass the model ID netease-youdao/bce-reranker-base_v1 with your Api.Airforce API key.
- Who makes Netease Youdao/bce Reranker Base V1?
- Netease Youdao/bce Reranker Base V1 is Anthropic's reranking model, served through the unified Api.Airforce gateway alongside 100+ other models.
Loading live metrics…
Loading live metrics…
Loading live metrics…
Use Netease Youdao/bce Reranker Base V1 via the API
OpenAI-compatible — point any OpenAI SDK at https://api.airforce/v1 and pass netease-youdao/bce-reranker-base_v1 as the model.
cURL
curl https://api.airforce/v1/chat/completions \
-H "Authorization: Bearer $AIRFORCE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "netease-youdao/bce-reranker-base_v1",
"messages": [{ "role": "user", "content": "Hello!" }]
}'Python
from openai import OpenAI
client = OpenAI(base_url="https://api.airforce/v1", api_key="$AIRFORCE_API_KEY")
r = client.chat.completions.create(
model="netease-youdao/bce-reranker-base_v1",
messages=[{"role": "user", "content": "Hello!"}],
)
print(r.choices[0].message.content)JavaScript
import OpenAI from "openai";
const client = new OpenAI({ baseURL: "https://api.airforce/v1", apiKey: process.env.AIRFORCE_API_KEY });
const r = await client.chat.completions.create({
model: "netease-youdao/bce-reranker-base_v1",
messages: [{ role: "user", content: "Hello!" }],
});
console.log(r.choices[0].message.content);