修复算力模型采样默认值

This commit is contained in:
2026-04-25 21:39:51 +08:00
parent 10465e3570
commit 380e99c577
24 changed files with 1413 additions and 508 deletions

View File

@@ -17,16 +17,23 @@
{
"modelName": "embedding-3",
"displayName": "智谱 embedding-3",
"serviceType": ["embedding"],
"description": "智谱嵌入模型v3支持自定义维度单条最大3072 tokens。走 OpenAI 兼容 /embeddings 端点Anthropic 协议不提供 embeddings",
"contextWindow": 3072,
"serviceType": [
"embedding"
],
"description": "智谱嵌入模型v3支持自定义维度模型上下文窗口 8K单条输入最多 3072 tokens。走 OpenAI 兼容 /embeddings 端点Anthropic 协议不提供 embeddings",
"contextWindow": 8192,
"capabilities": [
"text_embedding",
"semantic_search",
"rag"
"rag",
"custom_dimensions"
],
"inputPrice": 0.5,
"extra": {}
"extra": {
"maxInputTokensPerItem": 3072,
"maxBatchItems": 64,
"vectorDimensions": "256-2048"
}
}
]
}