Token502 API文档
  1. Rerank API
Token502 API文档
  • 产品介绍
  • 基本使用
    • 在API客户端中使用
    • 获取API令牌(API密钥)
    • 常用大模型
  • API
    • 发出请求
    • 完成对象
    • 常见问题
    • OpenAI
      • 聊天(Chat)
        • 创建聊天补全(带图片)
        • 创建聊天补全
      • 音频(Audio)
        • 创建语音
        • 创建转录
        • 创建翻译
      • 图像(Images)
        • 创建图像
        • 创建图片编辑
      • 自动补全(Completions)
        • 创建 Completions
      • 嵌入(Embeddings)
        • 创建嵌入
      • 模型(Models)
        • 列出模型
        • 检索模型
        • 删除微调模型
    • Anthropic
      • 模型
        • 列出模型
        • 获取模型
      • 消息
        • 消息
        • 强制返回思考
        • 图片理解
        • 函数调用
        • 多轮函数调用
        • Web search / 联网搜索
    • Gemini
      • 图片生成
        • 使用 Gemini 生成图片
        • 使用 Gemini 编辑图片
        • 使用 Imagen 3 生成图片
        • 使用 Gemini 生成图片 Copy
      • 文本生成
        • 文字输入
        • 多轮对话
        • 流式输出
        • 多轮对话(流式)
    • Midjourney
      • 查询
        • 查询接口
        • 批量查询接口
        • 获取种子(Seed)接口
      • 图像
        • 文生图(Imagine)接口
        • 图片融合(Blend)接口
      • 视频
        • 生成视频(Video)接口
      • 其他操作
        • 按钮点击(Action)接口
        • 图生文(Describe)接口
        • 上传(upload)接口
    • 其他厂商LLM
      • grok
        • OpenAI兼容接口
          • 联网搜索 / OpenAI兼容接口
      • 通义千问
    • 图片生成
      • Flux
        • flux-kontext-pro / OpenAI兼容接口
        • flux携带参考图 / OpenAI兼容接口
      • Nano-banana
        • 接口请求和格式
        • chat格式
          • 图片编辑(Nano-banana)
        • dalle格式
          • 图像生成(Nano-banana)
          • 创建图像
          • 创建图片编辑
        • 谷歌官方格式
          • 生成图像
      • seedream
    • 视频生成
      • 如何调用视频模型
      • sora-2
        • chat格式
          • 生成视频
          • 生成视频 Copy
        • 官方格式
          • 生成视频
          • 查询视频
          • 下载视频
          • 编辑视频
      • veo
        • chat 格式
          • 流式请求
          • 流式请求(传图)
        • 视频统一格式
          • 生成视频
          • 查询视频
    • Rerank API
      • Cohere 重排序格式
        POST
      • Xinference 重排序格式
        POST
      • Jina AI 重排序格式
        POST
  • 在客户端中使用
    • cline中使用
    • chatbox中使用大语言模型
  1. Rerank API

Jina AI 重排序格式

测试中
POST
https://api.token502.com/rerank
官方文档:https://jina.ai/reranker
标准格式:Jina AI的rerank格式被采用为标准格式。所有其他供应商(如Xinference、Cohere等)的rerank响应都会被格式化为Jina AI的格式,以提供统一的开发体验。
简介:Jina AI Rerank 是一个强大的文本重排序模型,可以根据查询对文档列表进行相关性排序。该模型支持多语言,可以处理不同语言的文本内容,并为每个文档分配相关性分数。

请求参数

Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token
示例:
Authorization: Bearer ********************
Header 参数

Body 参数application/json

示例
{
    "model": "jina-reranker-v2-base-multilingual",
    "query": "What is the capital of the United States?",
    "top_n": 3,
    "documents": [
        "Carson City is the capital city of the American state of Nevada.",
        "The Commonwealth of the Northern Mariana Islands is a group of islands in the Pacific Ocean. Its capital is Saipan.",
        "Washington, D.C. (also known as simply Washington or D.C., and officially as the District of Columbia) is the capital of the United States. It is a federal district.",
        "Capitalization or capitalisation in English grammar is the use of a capital letter at the start of a word. English usage varies from capitalization in other languages.",
        "Capital punishment (the death penalty) has existed in the United States since beforethe United States was a country. As of 2017, capital punishment is legal in 30 of the 50 states."
    ]
}

返回响应

🟢200OK
application/json
Body

示例
{
    "id": "chatcmpl-123",
    "object": "chat.completion",
    "created": 1677652288,
    "choices": [
        {
            "index": 0,
            "message": {
                "role": "assistant",
                "content": "\n\nHello there, how may I assist you today?"
            },
            "finish_reason": "stop"
        }
    ],
    "usage": {
        "prompt_tokens": 9,
        "completion_tokens": 12,
        "total_tokens": 21
    }
}
修改于 2025-09-28 10:21:59
上一页
Xinference 重排序格式
下一页
cline中使用
Built with