Classify(内容分类)
POST
/jina/v1/classify通过embedding模型来对内容进行分类打标签,来自于https://jina.ai/classifier
支持模型:
jina-clip-v1
jina-embeddings-v3
官方文档:https://api.jina.ai/redoc#tag/classification
价格:0.02 PTC / 1M Token
请求参数
Header 参数
Authorization
string
可选
示例值:
Bearer {{YOUR_API_KEY}}
Body 参数application/json
model
string
必需
labels
array[string]
必需
input
array[string]
必需
示例
{
"model": "jina-embeddings-v3",
"input": [
"Calculate the compound interest on a principal of $10,000 invested for 5 years at an annual rate of 5%, compounded quarterly.",
"分析使用CRISPR基因编辑技术在人类胚胎中的伦理影响。考虑潜在的医疗益处和长期社会后果。",
"AIが自意識を持つディストピアの未来を舞台にした短編小説を書いてください。人間とAIの関係や意識の本質をテーマに探求してください。",
"Erklären Sie die Unterschiede zwischen Merge-Sort und Quicksort-Algorithmen in Bezug auf Zeitkomplexität, Platzkomplexität und Leistung in der Praxis.",
"Write a poem about the beauty of nature and its healing power on the human soul.",
"Translate the following sentence into French: The quick brown fox jumps over the lazy dog."
],
"labels": [
"Simple task",
"Complex reasoning",
"Creative writing"
]
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
object {0}
示例
{}
最后修改时间: 16 天前