Skip to content

Commit 18a17ab

Browse files
committed
chore: update bailian-docs-llm-wiki (2026-08-11)
1 parent 8e9745b commit 18a17ab

522 files changed

Lines changed: 141411 additions & 5684 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

skills/bailian-docs-llm-wiki/llms.txt

Lines changed: 856 additions & 422 deletions
Large diffs are not rendered by default.

skills/bailian-docs-llm-wiki/models/groups/MiniMax-M2.1.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
],
7070
"modelAlias": "",
7171
"versionTag": "SNAPSHOT",
72-
"maxOutputTokens": 131072,
72+
"maxOutputTokens": 32768,
7373
"latestOnlineAt": "2026-02-24T15:07:02.000+00:00",
7474
"contextWindow": 204800,
7575
"maxInputTokens": 196608,

skills/bailian-docs-llm-wiki/models/groups/deepseek.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@
5757
"cache",
5858
"function-calling",
5959
"model-experience",
60-
"web-search"
60+
"web-search",
61+
"structured-outputs"
6162
],
6263
"provider": "deepseek",
6364
"model": "deepseek-v4-pro",
@@ -324,7 +325,8 @@
324325
"cache",
325326
"function-calling",
326327
"model-experience",
327-
"web-search"
328+
"web-search",
329+
"structured-outputs"
328330
],
329331
"provider": "deepseek",
330332
"model": "deepseek-v4-flash",

skills/bailian-docs-llm-wiki/models/groups/happyhorse-i2v.json

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,6 @@
1212
"Text"
1313
]
1414
},
15-
"builtInToolMultiPrices": [
16-
{
17-
"supportedApi": "Responses API",
18-
"name": "web_search",
19-
"docUrl": "https://help.aliyun.com/document_detail/2867560.html",
20-
"type": "web_search",
21-
"prices": [
22-
{
23-
"priceUnit": "千次调用",
24-
"price": "4",
25-
"currency": "CNY"
26-
}
27-
]
28-
}
29-
],
3015
"description": "HappyHorse-1.1-I2V支持图生视频,进一步提升画面质感、动态表现与跨片段一致性。模型能够更精准地理解输入图像并延续创作意图,在人物皮肤质感、ID跨片段保持、动作流畅度、文字渲染稳定性以及音画同步上带来显著改善,输出更真实自然、细节丰富且一致性更高的高质量视频。",
3116
"features": [
3217
"model-experience"

skills/bailian-docs-llm-wiki/models/groups/minimax-models-market-place.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,9 @@
8080
"samples": {
8181
"openai": {
8282
"completionsAPI": {
83-
"curl": "curl --location 'https://dashscope.aliyuncs.com/compatible-mode/v1/chat/completions' \\\n--header \"Authorization: Bearer $DASHSCOPE_API_KEY\" \\\n--header 'Content-Type: application/json' \\\n--data '{\n \"model\": \"MiniMax/MiniMax-M3\",\n \"messages\": [\n {\n \"role\": \"user\",\n \"content\": [\n {\"type\": \"image_url\", \"image_url\": {\"url\": \"https://help-static-aliyun-doc.aliyuncs.com/file-manage-files/zh-CN/20241108/ctdzex/biaozhun.jpg\"}},\n {\"type\": \"text\", \"text\": \"请仅输出图像中的文本内容。\"}\n ]\n }]\n}'",
84-
"python": "import os\nfrom openai import OpenAI\n\nclient = OpenAI(\n api_key=os.getenv(\"DASHSCOPE_API_KEY\"),\n base_url=\"https://dashscope.aliyuncs.com/compatible-mode/v1\",\n)\n\ncompletion = client.chat.completions.create(\n model=\"MiniMax/MiniMax-M3\",\n messages=[\n {\n \"role\": \"user\",\n \"content\": [\n {\n \"type\": \"image_url\",\n \"image_url\": {\n \"url\": \"https://help-static-aliyun-doc.aliyuncs.com/file-manage-files/zh-CN/20241108/ctdzex/biaozhun.jpg\"\n },\n },\n {\"type\": \"text\", \"text\": \"请仅输出图像中的文本内容。\"},\n ],\n },\n ],\n)\nprint(completion.choices[0].message.content)",
85-
"nodejs": "import OpenAI from \"openai\";\n\nconst openai = new OpenAI({\n // 若没有配置环境变量,请用百炼API Key将下行替换为:apiKey: \"sk-xxx\"\n apiKey: process.env.DASHSCOPE_API_KEY,\n baseURL: \"https://dashscope.aliyuncs.com/compatible-mode/v1\"\n});\n\nasync function main() {\n const response = await openai.chat.completions.create({\n model: \"MiniMax/MiniMax-M3\",\n messages: [\n {\n role: \"user\",\n content: [{\n type: \"image_url\",\n image_url: {\n \"url\": \"https://help-static-aliyun-doc.aliyuncs.com/file-manage-files/zh-CN/20241108/ctdzex/biaozhun.jpg\"\n }\n },\n {\n type: \"text\",\n text: \"请仅输出图像中的文本内容。\"\n }\n ]\n }\n ]\n });\n console.log(response.choices[0].message.content);\n}\nmain()",
83+
"curl": "curl --location 'https://dashscope-intl.aliyuncs.com/compatible-mode/v1/chat/completions' \\\n--header \"Authorization: Bearer $DASHSCOPE_API_KEY\" \\\n--header 'Content-Type: application/json' \\\n--data '{\n \"model\": \"MiniMax/MiniMax-M3\",\n \"messages\": [\n {\n \"role\": \"user\",\n \"content\": [\n {\"type\": \"image_url\", \"image_url\": {\"url\": \"https://help-static-aliyun-doc.aliyuncs.com/file-manage-files/zh-CN/20241108/ctdzex/biaozhun.jpg\"}},\n {\"type\": \"text\", \"text\": \"请仅输出图像中的文本内容。\"}\n ]\n }]\n}'",
84+
"python": "import os\nfrom openai import OpenAI\n\nclient = OpenAI(\n api_key=os.getenv(\"DASHSCOPE_API_KEY\"),\n base_url=\"https://dashscope-intl.aliyuncs.com/compatible-mode/v1\",\n)\n\ncompletion = client.chat.completions.create(\n model=\"MiniMax/MiniMax-M3\",\n messages=[\n {\n \"role\": \"user\",\n \"content\": [\n {\n \"type\": \"image_url\",\n \"image_url\": {\n \"url\": \"https://help-static-aliyun-doc.aliyuncs.com/file-manage-files/zh-CN/20241108/ctdzex/biaozhun.jpg\"\n },\n },\n {\"type\": \"text\", \"text\": \"请仅输出图像中的文本内容。\"},\n ],\n },\n ],\n)\nprint(completion.choices[0].message.content)",
85+
"nodejs": "import OpenAI from \"openai\";\n\nconst openai = new OpenAI({\n // 若没有配置环境变量,请用百炼API Key将下行替换为:apiKey: \"sk-xxx\"\n apiKey: process.env.DASHSCOPE_API_KEY,\n baseURL: \"https://dashscope-intl.aliyuncs.com/compatible-mode/v1\"\n});\n\nasync function main() {\n const response = await openai.chat.completions.create({\n model: \"MiniMax/MiniMax-M3\",\n messages: [\n {\n role: \"user\",\n content: [{\n type: \"image_url\",\n image_url: {\n \"url\": \"https://help-static-aliyun-doc.aliyuncs.com/file-manage-files/zh-CN/20241108/ctdzex/biaozhun.jpg\"\n }\n },\n {\n type: \"text\",\n text: \"请仅输出图像中的文本内容。\"\n }\n ]\n }\n ]\n });\n console.log(response.choices[0].message.content);\n}\nmain()",
8686
"docUrl": "https://help.aliyun.com/document_detail/3021620.html"
8787
}
8888
}

skills/bailian-docs-llm-wiki/models/groups/qwen-audio-realtime-flash.json

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,28 +23,24 @@
2323
{
2424
"priceUnit": "每百万tokens",
2525
"price": "30",
26-
"timeBand": "standard",
2726
"type": "audio_input_token",
2827
"priceName": "输入:音频"
2928
},
3029
{
3130
"priceUnit": "每百万tokens",
3231
"price": "3",
33-
"timeBand": "standard",
3432
"type": "audio_text_input_token",
3533
"priceName": "输入:文本"
3634
},
3735
{
3836
"priceUnit": "每百万tokens",
3937
"price": "30",
40-
"timeBand": "standard",
4138
"type": "audio_text_output_token",
4239
"priceName": "输出:文本"
4340
},
4441
{
4542
"priceUnit": "每百万tokens",
4643
"price": "100",
47-
"timeBand": "standard",
4844
"type": "audio_output_token",
4945
"priceName": "输出:文本+音频(输出的文本不计费)"
5046
}
@@ -67,9 +63,7 @@
6763
"type": "model-default"
6864
}
6965
},
70-
"priceTimeBands": [
71-
"standard"
72-
],
66+
"priceTimeBands": [],
7367
"capabilities": [
7468
"Realtime-Chatting"
7569
],

skills/bailian-docs-llm-wiki/models/groups/qwen-audio-realtime-plus.json

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,28 +23,24 @@
2323
{
2424
"priceUnit": "每百万tokens",
2525
"price": "40",
26-
"timeBand": "standard",
2726
"type": "audio_input_token",
2827
"priceName": "输入:音频"
2928
},
3029
{
3130
"priceUnit": "每百万tokens",
3231
"price": "5",
33-
"timeBand": "standard",
3432
"type": "audio_text_input_token",
3533
"priceName": "输入:文本"
3634
},
3735
{
3836
"priceUnit": "每百万tokens",
3937
"price": "40",
40-
"timeBand": "standard",
4138
"type": "audio_text_output_token",
4239
"priceName": "输出:文本"
4340
},
4441
{
4542
"priceUnit": "每百万tokens",
4643
"price": "150",
47-
"timeBand": "standard",
4844
"type": "audio_output_token",
4945
"priceName": "输出:文本+音频(输出的文本不计费)"
5046
}
@@ -67,9 +63,7 @@
6763
"type": "model-default"
6864
}
6965
},
70-
"priceTimeBands": [
71-
"standard"
72-
],
66+
"priceTimeBands": [],
7367
"capabilities": [
7468
"Realtime-Chatting"
7569
],

skills/bailian-docs-llm-wiki/models/groups/qwen-image-3.0.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@
4646
],
4747
"qpmInfo": {
4848
"model-default-actual": {
49-
"count_limit_period": 60,
50-
"count_limit": 1,
49+
"count_limit_period": 6,
50+
"count_limit": 2,
5151
"type": "model-default"
5252
},
5353
"model-default": {
54-
"count_limit_period": 60,
55-
"count_limit": 1,
54+
"count_limit_period": 6,
55+
"count_limit": 2,
5656
"type": "model-default"
5757
}
5858
},

skills/bailian-docs-llm-wiki/models/index.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"updatedAt": "2026-08-10",
2+
"updatedAt": "2026-08-11",
33
"totalFamilies": 178,
44
"totalModels": 396,
55
"profileCoverage": {
6-
"full": 327,
7-
"partial": 22,
8-
"structured-only": 47,
6+
"full": 341,
7+
"partial": 11,
8+
"structured-only": 44,
99
"none": 0
1010
},
1111
"capabilityDistribution": {

skills/bailian-docs-llm-wiki/models/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# 百炼模型市场索引
22

3-
> 自动生成 · 共 178 个模型家族 · 396 个主干模型 · 更新于 2026-08-10
3+
> 自动生成 · 共 178 个模型家族 · 396 个主干模型 · 更新于 2026-08-11
44
55
**机器查询走结构化文件**
66

0 commit comments

Comments
 (0)