@ailib-official/ai-protocol 0.8.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +6 -0
- package/README.md +415 -0
- package/dist/index.json +8 -0
- package/dist/v1/models/ai21.json +140 -0
- package/dist/v1/models/baichuan.json +138 -0
- package/dist/v1/models/cerebras.json +147 -0
- package/dist/v1/models/claude.json +114 -0
- package/dist/v1/models/cohere.json +235 -0
- package/dist/v1/models/deepinfra.json +43 -0
- package/dist/v1/models/deepseek-chat.json +55 -0
- package/dist/v1/models/doubao.json +197 -0
- package/dist/v1/models/ernie.json +223 -0
- package/dist/v1/models/fireworks.json +222 -0
- package/dist/v1/models/gemini.json +58 -0
- package/dist/v1/models/gpt.json +166 -0
- package/dist/v1/models/grok.json +138 -0
- package/dist/v1/models/huggingface.json +183 -0
- package/dist/v1/models/hunyuan.json +255 -0
- package/dist/v1/models/jina.json +139 -0
- package/dist/v1/models/lepton.json +188 -0
- package/dist/v1/models/llama.json +143 -0
- package/dist/v1/models/minimax.json +194 -0
- package/dist/v1/models/mistral.json +177 -0
- package/dist/v1/models/moonshot.json +144 -0
- package/dist/v1/models/nvidia.json +212 -0
- package/dist/v1/models/palmyra.json +103 -0
- package/dist/v1/models/perplexity.json +143 -0
- package/dist/v1/models/qwen.json +49 -0
- package/dist/v1/models/replicate.json +206 -0
- package/dist/v1/models/sensenova.json +144 -0
- package/dist/v1/models/siliconflow.json +44 -0
- package/dist/v1/models/spark.json +173 -0
- package/dist/v1/models/stable-diffusion.json +161 -0
- package/dist/v1/models/tiangong.json +169 -0
- package/dist/v1/models/together.json +43 -0
- package/dist/v1/models/yi.json +199 -0
- package/dist/v1/models/zhipu.json +250 -0
- package/dist/v1/providers/ai21.json +215 -0
- package/dist/v1/providers/anthropic.json +253 -0
- package/dist/v1/providers/anyscale.json +115 -0
- package/dist/v1/providers/azure.json +188 -0
- package/dist/v1/providers/baichuan.json +205 -0
- package/dist/v1/providers/baidu.json +205 -0
- package/dist/v1/providers/cerebras.json +216 -0
- package/dist/v1/providers/cohere.json +209 -0
- package/dist/v1/providers/deepinfra.json +196 -0
- package/dist/v1/providers/deepseek.json +221 -0
- package/dist/v1/providers/doubao.json +209 -0
- package/dist/v1/providers/fireworks.json +227 -0
- package/dist/v1/providers/gemini.json +279 -0
- package/dist/v1/providers/groq.json +218 -0
- package/dist/v1/providers/huggingface.json +181 -0
- package/dist/v1/providers/hunyuan.json +198 -0
- package/dist/v1/providers/jina.json +202 -0
- package/dist/v1/providers/lepton.json +221 -0
- package/dist/v1/providers/minimax.json +209 -0
- package/dist/v1/providers/mistral.json +214 -0
- package/dist/v1/providers/moonshot.json +214 -0
- package/dist/v1/providers/nvidia.json +213 -0
- package/dist/v1/providers/openai.json +267 -0
- package/dist/v1/providers/openrouter.json +220 -0
- package/dist/v1/providers/perplexity.json +172 -0
- package/dist/v1/providers/qwen.json +231 -0
- package/dist/v1/providers/replicate.json +192 -0
- package/dist/v1/providers/sensenova.json +185 -0
- package/dist/v1/providers/siliconflow.json +197 -0
- package/dist/v1/providers/spark.json +204 -0
- package/dist/v1/providers/stability.json +221 -0
- package/dist/v1/providers/tiangong.json +207 -0
- package/dist/v1/providers/together.json +196 -0
- package/dist/v1/providers/writer.json +253 -0
- package/dist/v1/providers/xai.json +238 -0
- package/dist/v1/providers/yi.json +205 -0
- package/dist/v1/providers/zhipu.json +208 -0
- package/dist/v1/spec.json +783 -0
- package/dist/v2/providers/anthropic.json +372 -0
- package/dist/v2/providers/cohere.json +109 -0
- package/dist/v2/providers/deepseek.json +272 -0
- package/dist/v2/providers/doubao.json +260 -0
- package/dist/v2/providers/google.json +388 -0
- package/dist/v2/providers/jina.json +71 -0
- package/dist/v2/providers/moonshot.json +284 -0
- package/dist/v2/providers/openai.json +419 -0
- package/dist/v2/providers/qwen.json +274 -0
- package/dist/v2/providers/zhipu.json +257 -0
- package/dist/v2-alpha/providers/anthropic.json +182 -0
- package/dist/v2-alpha/providers/gemini.json +187 -0
- package/dist/v2-alpha/providers/openai.json +215 -0
- package/dist/v2-alpha/spec.json +644 -0
- package/package.json +61 -0
- package/schemas/spec.json +186 -0
- package/schemas/v1.json +1116 -0
- package/schemas/v2/availability.json +66 -0
- package/schemas/v2/capabilities.json +182 -0
- package/schemas/v2/capability-profile.json +174 -0
- package/schemas/v2/computer-use.json +222 -0
- package/schemas/v2/context-policy.json +148 -0
- package/schemas/v2/endpoint.json +2 -0
- package/schemas/v2/error-codes.yaml +225 -0
- package/schemas/v2/errors.json +250 -0
- package/schemas/v2/execution-metadata.json +59 -0
- package/schemas/v2/mcp.json +225 -0
- package/schemas/v2/message-roles.json +10 -0
- package/schemas/v2/multimodal.json +297 -0
- package/schemas/v2/pricing.json +14 -0
- package/schemas/v2/provider-contract.json +317 -0
- package/schemas/v2/provider.json +203 -0
- package/schemas/v2/regions.json +14 -0
- package/v1/models/ai21.yaml +97 -0
- package/v1/models/baichuan.yaml +95 -0
- package/v1/models/cerebras.yaml +99 -0
- package/v1/models/claude.yaml +59 -0
- package/v1/models/cohere.yaml +165 -0
- package/v1/models/deepinfra.yaml +29 -0
- package/v1/models/deepseek-chat.yaml +32 -0
- package/v1/models/doubao.yaml +129 -0
- package/v1/models/ernie.yaml +146 -0
- package/v1/models/fireworks.yaml +145 -0
- package/v1/models/gemini.yaml +32 -0
- package/v1/models/gpt.yaml +90 -0
- package/v1/models/grok.yaml +74 -0
- package/v1/models/huggingface.yaml +110 -0
- package/v1/models/hunyuan.yaml +164 -0
- package/v1/models/jina.yaml +98 -0
- package/v1/models/lepton.yaml +130 -0
- package/v1/models/llama.yaml +91 -0
- package/v1/models/minimax.yaml +132 -0
- package/v1/models/mistral.yaml +100 -0
- package/v1/models/moonshot.yaml +97 -0
- package/v1/models/nvidia.yaml +118 -0
- package/v1/models/palmyra.yaml +59 -0
- package/v1/models/perplexity.yaml +97 -0
- package/v1/models/qwen.yaml +27 -0
- package/v1/models/replicate.yaml +136 -0
- package/v1/models/sensenova.yaml +97 -0
- package/v1/models/siliconflow.yaml +29 -0
- package/v1/models/spark.yaml +114 -0
- package/v1/models/stable-diffusion.yaml +113 -0
- package/v1/models/tiangong.yaml +114 -0
- package/v1/models/together.yaml +29 -0
- package/v1/models/yi.yaml +132 -0
- package/v1/models/zhipu.yaml +163 -0
- package/v1/providers/ai21.yaml +176 -0
- package/v1/providers/anthropic.yaml +209 -0
- package/v1/providers/anyscale.yaml +106 -0
- package/v1/providers/azure.yaml +155 -0
- package/v1/providers/baichuan.yaml +168 -0
- package/v1/providers/baidu.yaml +173 -0
- package/v1/providers/cerebras.yaml +178 -0
- package/v1/providers/cohere.yaml +175 -0
- package/v1/providers/deepinfra.yaml +156 -0
- package/v1/providers/deepseek.yaml +189 -0
- package/v1/providers/doubao.yaml +172 -0
- package/v1/providers/fireworks.yaml +187 -0
- package/v1/providers/gemini.yaml +229 -0
- package/v1/providers/groq.yaml +181 -0
- package/v1/providers/huggingface.yaml +157 -0
- package/v1/providers/hunyuan.yaml +162 -0
- package/v1/providers/jina.yaml +171 -0
- package/v1/providers/lepton.yaml +183 -0
- package/v1/providers/minimax.yaml +172 -0
- package/v1/providers/mistral.yaml +186 -0
- package/v1/providers/moonshot.yaml +176 -0
- package/v1/providers/nvidia.yaml +172 -0
- package/v1/providers/openai.yaml +224 -0
- package/v1/providers/openrouter.yaml +181 -0
- package/v1/providers/perplexity.yaml +144 -0
- package/v1/providers/qwen.yaml +192 -0
- package/v1/providers/replicate.yaml +159 -0
- package/v1/providers/sensenova.yaml +153 -0
- package/v1/providers/siliconflow.yaml +156 -0
- package/v1/providers/spark.yaml +167 -0
- package/v1/providers/stability.yaml +185 -0
- package/v1/providers/tiangong.yaml +170 -0
- package/v1/providers/together.yaml +156 -0
- package/v1/providers/writer.yaml +212 -0
- package/v1/providers/xai.yaml +206 -0
- package/v1/providers/yi.yaml +168 -0
- package/v1/providers/zhipu.yaml +171 -0
- package/v1/spec.yaml +637 -0
- package/v2/providers/anthropic.yaml +244 -0
- package/v2/providers/cohere.yaml +75 -0
- package/v2/providers/deepseek.yaml +176 -0
- package/v2/providers/doubao.yaml +169 -0
- package/v2/providers/google.yaml +245 -0
- package/v2/providers/jina.yaml +55 -0
- package/v2/providers/moonshot.yaml +186 -0
- package/v2/providers/openai.yaml +266 -0
- package/v2/providers/qwen.yaml +174 -0
- package/v2/providers/zhipu.yaml +176 -0
- package/v2-alpha/providers/anthropic.yaml +134 -0
- package/v2-alpha/providers/gemini.yaml +144 -0
- package/v2-alpha/providers/openai.yaml +154 -0
- package/v2-alpha/spec.yaml +512 -0
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
$schema: "https://raw.githubusercontent.com/ailib-official/ai-protocol/main/schemas/v1.json"
|
|
2
|
+
protocol_version: "1.1"
|
|
3
|
+
|
|
4
|
+
# 百度文心 (Baidu ERNIE) Model Instances
|
|
5
|
+
#
|
|
6
|
+
# VERIFIED_AT: 2026-01-31 (based on public Baidu Cloud documentation)
|
|
7
|
+
#
|
|
8
|
+
# Notes:
|
|
9
|
+
# - ERNIE (文心一言) is Baidu's flagship LLM series.
|
|
10
|
+
# - Different models have different API endpoints.
|
|
11
|
+
|
|
12
|
+
models:
|
|
13
|
+
# ERNIE 4.0 series (flagship)
|
|
14
|
+
ernie-4.0-8k:
|
|
15
|
+
provider: baidu
|
|
16
|
+
model_id: "ernie-4.0-8k"
|
|
17
|
+
display_name: "文心一言 4.0 8K"
|
|
18
|
+
verification:
|
|
19
|
+
status: unverified
|
|
20
|
+
verified_at: "2026-01-31"
|
|
21
|
+
source: "documentation"
|
|
22
|
+
notes: "ERNIE 4.0 flagship model with enhanced reasoning."
|
|
23
|
+
context_window: 8192
|
|
24
|
+
capabilities: [chat, tools, streaming]
|
|
25
|
+
status: active
|
|
26
|
+
tags: ["baidu", "ernie", "flagship", "cn"]
|
|
27
|
+
pricing:
|
|
28
|
+
input_per_token: 0.00012
|
|
29
|
+
output_per_token: 0.00012
|
|
30
|
+
|
|
31
|
+
ernie-4.0-turbo-8k:
|
|
32
|
+
provider: baidu
|
|
33
|
+
model_id: "ernie-4.0-turbo-8k"
|
|
34
|
+
display_name: "文心一言 4.0 Turbo 8K"
|
|
35
|
+
verification:
|
|
36
|
+
status: unverified
|
|
37
|
+
verified_at: "2026-01-31"
|
|
38
|
+
source: "documentation"
|
|
39
|
+
context_window: 8192
|
|
40
|
+
capabilities: [chat, tools, streaming]
|
|
41
|
+
status: active
|
|
42
|
+
tags: ["baidu", "ernie", "turbo", "cn"]
|
|
43
|
+
pricing:
|
|
44
|
+
input_per_token: 0.00003
|
|
45
|
+
output_per_token: 0.00006
|
|
46
|
+
|
|
47
|
+
# ERNIE 3.5 series
|
|
48
|
+
ernie-3.5-8k:
|
|
49
|
+
provider: baidu
|
|
50
|
+
model_id: "ernie-3.5-8k"
|
|
51
|
+
display_name: "文心一言 3.5 8K"
|
|
52
|
+
verification:
|
|
53
|
+
status: unverified
|
|
54
|
+
verified_at: "2026-01-31"
|
|
55
|
+
source: "documentation"
|
|
56
|
+
context_window: 8192
|
|
57
|
+
capabilities: [chat, tools, streaming]
|
|
58
|
+
status: active
|
|
59
|
+
tags: ["baidu", "ernie", "cn"]
|
|
60
|
+
pricing:
|
|
61
|
+
input_per_token: 0.000012
|
|
62
|
+
output_per_token: 0.000012
|
|
63
|
+
|
|
64
|
+
ernie-3.5-128k:
|
|
65
|
+
provider: baidu
|
|
66
|
+
model_id: "ernie-3.5-128k"
|
|
67
|
+
display_name: "文心一言 3.5 128K"
|
|
68
|
+
verification:
|
|
69
|
+
status: unverified
|
|
70
|
+
verified_at: "2026-01-31"
|
|
71
|
+
source: "documentation"
|
|
72
|
+
context_window: 131072
|
|
73
|
+
capabilities: [chat, tools, streaming]
|
|
74
|
+
status: active
|
|
75
|
+
tags: ["baidu", "ernie", "long_context", "cn"]
|
|
76
|
+
pricing:
|
|
77
|
+
input_per_token: 0.000024
|
|
78
|
+
output_per_token: 0.000024
|
|
79
|
+
|
|
80
|
+
# ERNIE Speed series (cost-effective)
|
|
81
|
+
ernie-speed-8k:
|
|
82
|
+
provider: baidu
|
|
83
|
+
model_id: "ernie-speed-8k"
|
|
84
|
+
display_name: "文心一言 Speed 8K"
|
|
85
|
+
verification:
|
|
86
|
+
status: unverified
|
|
87
|
+
verified_at: "2026-01-31"
|
|
88
|
+
source: "documentation"
|
|
89
|
+
context_window: 8192
|
|
90
|
+
capabilities: [chat, streaming]
|
|
91
|
+
status: active
|
|
92
|
+
tags: ["baidu", "ernie", "speed", "cost_effective", "cn"]
|
|
93
|
+
pricing:
|
|
94
|
+
input_per_token: 0.000001
|
|
95
|
+
output_per_token: 0.000001
|
|
96
|
+
|
|
97
|
+
ernie-speed-128k:
|
|
98
|
+
provider: baidu
|
|
99
|
+
model_id: "ernie-speed-128k"
|
|
100
|
+
display_name: "文心一言 Speed 128K"
|
|
101
|
+
verification:
|
|
102
|
+
status: unverified
|
|
103
|
+
verified_at: "2026-01-31"
|
|
104
|
+
source: "documentation"
|
|
105
|
+
context_window: 131072
|
|
106
|
+
capabilities: [chat, streaming]
|
|
107
|
+
status: active
|
|
108
|
+
tags: ["baidu", "ernie", "speed", "long_context", "cn"]
|
|
109
|
+
pricing:
|
|
110
|
+
input_per_token: 0.000001
|
|
111
|
+
output_per_token: 0.000001
|
|
112
|
+
|
|
113
|
+
# ERNIE Lite series (free tier available)
|
|
114
|
+
ernie-lite-8k:
|
|
115
|
+
provider: baidu
|
|
116
|
+
model_id: "ernie-lite-8k"
|
|
117
|
+
display_name: "文心一言 Lite 8K"
|
|
118
|
+
verification:
|
|
119
|
+
status: unverified
|
|
120
|
+
verified_at: "2026-01-31"
|
|
121
|
+
source: "documentation"
|
|
122
|
+
notes: "Free tier available with rate limits."
|
|
123
|
+
context_window: 8192
|
|
124
|
+
capabilities: [chat, streaming]
|
|
125
|
+
status: active
|
|
126
|
+
tags: ["baidu", "ernie", "lite", "free_tier", "cn"]
|
|
127
|
+
pricing:
|
|
128
|
+
input_per_token: 0
|
|
129
|
+
output_per_token: 0
|
|
130
|
+
|
|
131
|
+
# ERNIE Character (角色扮演)
|
|
132
|
+
ernie-character-8k:
|
|
133
|
+
provider: baidu
|
|
134
|
+
model_id: "ernie-char-8k"
|
|
135
|
+
display_name: "文心一言 Character 8K"
|
|
136
|
+
verification:
|
|
137
|
+
status: unverified
|
|
138
|
+
verified_at: "2026-01-31"
|
|
139
|
+
source: "documentation"
|
|
140
|
+
context_window: 8192
|
|
141
|
+
capabilities: [chat, streaming]
|
|
142
|
+
status: active
|
|
143
|
+
tags: ["baidu", "ernie", "character", "roleplay", "cn"]
|
|
144
|
+
pricing:
|
|
145
|
+
input_per_token: 0.000004
|
|
146
|
+
output_per_token: 0.000008
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
$schema: "https://raw.githubusercontent.com/ailib-official/ai-protocol/main/schemas/v1.json"
|
|
2
|
+
protocol_version: "1.1"
|
|
3
|
+
|
|
4
|
+
# Fireworks AI Model Instances
|
|
5
|
+
#
|
|
6
|
+
# VERIFIED_AT: 2026-01-29 (based on public Fireworks AI documentation)
|
|
7
|
+
#
|
|
8
|
+
# Notes:
|
|
9
|
+
# - Fireworks AI provides high-performance inference for various open-source models.
|
|
10
|
+
# - Model IDs follow the pattern: accounts/fireworks/models/{model_name}
|
|
11
|
+
|
|
12
|
+
models:
|
|
13
|
+
# Llama 3.1 models
|
|
14
|
+
"accounts/fireworks/models/llama-v3p1-8b-instruct":
|
|
15
|
+
provider: fireworks
|
|
16
|
+
model_id: "accounts/fireworks/models/llama-v3p1-8b-instruct"
|
|
17
|
+
display_name: "Llama 3.1 8B Instruct"
|
|
18
|
+
verification:
|
|
19
|
+
status: unverified
|
|
20
|
+
verified_at: "2026-01-29"
|
|
21
|
+
source: "documentation"
|
|
22
|
+
notes: "Based on public documentation. Runtime verification recommended."
|
|
23
|
+
context_window: 131072
|
|
24
|
+
capabilities: [chat, tools, streaming]
|
|
25
|
+
status: active
|
|
26
|
+
tags: ["meta", "llama", "fireworks", "instruct"]
|
|
27
|
+
pricing:
|
|
28
|
+
input_per_token: 0.0000002
|
|
29
|
+
output_per_token: 0.0000002
|
|
30
|
+
|
|
31
|
+
"accounts/fireworks/models/llama-v3p1-70b-instruct":
|
|
32
|
+
provider: fireworks
|
|
33
|
+
model_id: "accounts/fireworks/models/llama-v3p1-70b-instruct"
|
|
34
|
+
display_name: "Llama 3.1 70B Instruct"
|
|
35
|
+
verification:
|
|
36
|
+
status: unverified
|
|
37
|
+
verified_at: "2026-01-29"
|
|
38
|
+
source: "documentation"
|
|
39
|
+
context_window: 131072
|
|
40
|
+
capabilities: [chat, tools, streaming]
|
|
41
|
+
status: active
|
|
42
|
+
tags: ["meta", "llama", "fireworks", "instruct"]
|
|
43
|
+
pricing:
|
|
44
|
+
input_per_token: 0.0000009
|
|
45
|
+
output_per_token: 0.0000009
|
|
46
|
+
|
|
47
|
+
"accounts/fireworks/models/llama-v3p1-405b-instruct":
|
|
48
|
+
provider: fireworks
|
|
49
|
+
model_id: "accounts/fireworks/models/llama-v3p1-405b-instruct"
|
|
50
|
+
display_name: "Llama 3.1 405B Instruct"
|
|
51
|
+
verification:
|
|
52
|
+
status: unverified
|
|
53
|
+
verified_at: "2026-01-29"
|
|
54
|
+
source: "documentation"
|
|
55
|
+
context_window: 131072
|
|
56
|
+
capabilities: [chat, tools, streaming]
|
|
57
|
+
status: active
|
|
58
|
+
tags: ["meta", "llama", "fireworks", "instruct", "flagship"]
|
|
59
|
+
pricing:
|
|
60
|
+
input_per_token: 0.000003
|
|
61
|
+
output_per_token: 0.000003
|
|
62
|
+
|
|
63
|
+
# Mixtral models
|
|
64
|
+
"accounts/fireworks/models/mixtral-8x7b-instruct":
|
|
65
|
+
provider: fireworks
|
|
66
|
+
model_id: "accounts/fireworks/models/mixtral-8x7b-instruct"
|
|
67
|
+
display_name: "Mixtral 8x7B Instruct"
|
|
68
|
+
verification:
|
|
69
|
+
status: unverified
|
|
70
|
+
verified_at: "2026-01-29"
|
|
71
|
+
source: "documentation"
|
|
72
|
+
context_window: 32768
|
|
73
|
+
capabilities: [chat, tools, streaming]
|
|
74
|
+
status: active
|
|
75
|
+
tags: ["mistral", "mixtral", "moe", "fireworks"]
|
|
76
|
+
pricing:
|
|
77
|
+
input_per_token: 0.0000005
|
|
78
|
+
output_per_token: 0.0000005
|
|
79
|
+
|
|
80
|
+
"accounts/fireworks/models/mixtral-8x22b-instruct":
|
|
81
|
+
provider: fireworks
|
|
82
|
+
model_id: "accounts/fireworks/models/mixtral-8x22b-instruct"
|
|
83
|
+
display_name: "Mixtral 8x22B Instruct"
|
|
84
|
+
verification:
|
|
85
|
+
status: unverified
|
|
86
|
+
verified_at: "2026-01-29"
|
|
87
|
+
source: "documentation"
|
|
88
|
+
context_window: 65536
|
|
89
|
+
capabilities: [chat, tools, streaming]
|
|
90
|
+
status: active
|
|
91
|
+
tags: ["mistral", "mixtral", "moe", "fireworks"]
|
|
92
|
+
pricing:
|
|
93
|
+
input_per_token: 0.0000012
|
|
94
|
+
output_per_token: 0.0000012
|
|
95
|
+
|
|
96
|
+
# Qwen models
|
|
97
|
+
"accounts/fireworks/models/qwen2p5-72b-instruct":
|
|
98
|
+
provider: fireworks
|
|
99
|
+
model_id: "accounts/fireworks/models/qwen2p5-72b-instruct"
|
|
100
|
+
display_name: "Qwen 2.5 72B Instruct"
|
|
101
|
+
verification:
|
|
102
|
+
status: unverified
|
|
103
|
+
verified_at: "2026-01-29"
|
|
104
|
+
source: "documentation"
|
|
105
|
+
context_window: 32768
|
|
106
|
+
capabilities: [chat, tools, streaming]
|
|
107
|
+
status: active
|
|
108
|
+
tags: ["alibaba", "qwen", "fireworks"]
|
|
109
|
+
pricing:
|
|
110
|
+
input_per_token: 0.0000009
|
|
111
|
+
output_per_token: 0.0000009
|
|
112
|
+
|
|
113
|
+
# DeepSeek models
|
|
114
|
+
"accounts/fireworks/models/deepseek-v3":
|
|
115
|
+
provider: fireworks
|
|
116
|
+
model_id: "accounts/fireworks/models/deepseek-v3"
|
|
117
|
+
display_name: "DeepSeek V3"
|
|
118
|
+
verification:
|
|
119
|
+
status: unverified
|
|
120
|
+
verified_at: "2026-01-29"
|
|
121
|
+
source: "documentation"
|
|
122
|
+
context_window: 131072
|
|
123
|
+
capabilities: [chat, tools, streaming]
|
|
124
|
+
status: active
|
|
125
|
+
tags: ["deepseek", "fireworks", "moe"]
|
|
126
|
+
pricing:
|
|
127
|
+
input_per_token: 0.0000009
|
|
128
|
+
output_per_token: 0.0000009
|
|
129
|
+
|
|
130
|
+
# FireFunction (fine-tuned for function calling)
|
|
131
|
+
"accounts/fireworks/models/firefunction-v2":
|
|
132
|
+
provider: fireworks
|
|
133
|
+
model_id: "accounts/fireworks/models/firefunction-v2"
|
|
134
|
+
display_name: "FireFunction V2"
|
|
135
|
+
verification:
|
|
136
|
+
status: unverified
|
|
137
|
+
verified_at: "2026-01-29"
|
|
138
|
+
source: "documentation"
|
|
139
|
+
context_window: 8192
|
|
140
|
+
capabilities: [chat, tools, streaming, function_calling]
|
|
141
|
+
status: active
|
|
142
|
+
tags: ["fireworks", "function_calling", "specialized"]
|
|
143
|
+
pricing:
|
|
144
|
+
input_per_token: 0.0000009
|
|
145
|
+
output_per_token: 0.0000009
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
$schema: "https://raw.githubusercontent.com/ailib-official/ai-protocol/main/schemas/v1.json"
|
|
2
|
+
protocol_version: "1.1"
|
|
3
|
+
|
|
4
|
+
# Gemini Model Instances
|
|
5
|
+
models:
|
|
6
|
+
# VERIFIED_AT: 2026-01-28 (via Gemini list_models: GET /v1beta/models)
|
|
7
|
+
gemini-2.5-pro:
|
|
8
|
+
provider: gemini
|
|
9
|
+
model_id: "gemini-2.5-pro"
|
|
10
|
+
name: "Gemini 2.5 Pro"
|
|
11
|
+
verification:
|
|
12
|
+
status: verified
|
|
13
|
+
verified_at: "2026-01-28"
|
|
14
|
+
source: "list_models:/v1beta/models"
|
|
15
|
+
context_window: 2000000
|
|
16
|
+
capabilities: ["chat", "vision", "audio", "video", "tools", "streaming", "reasoning"]
|
|
17
|
+
status: active
|
|
18
|
+
tags: ["google", "multimodal", "large-context"]
|
|
19
|
+
|
|
20
|
+
# VERIFIED_AT: 2026-01-28 (via Gemini list_models: GET /v1beta/models)
|
|
21
|
+
gemini-2.5-flash:
|
|
22
|
+
provider: gemini
|
|
23
|
+
model_id: "gemini-2.5-flash"
|
|
24
|
+
name: "Gemini 2.5 Flash"
|
|
25
|
+
verification:
|
|
26
|
+
status: verified
|
|
27
|
+
verified_at: "2026-01-28"
|
|
28
|
+
source: "list_models:/v1beta/models"
|
|
29
|
+
context_window: 1000000
|
|
30
|
+
capabilities: ["chat", "vision", "audio", "video", "tools", "streaming"]
|
|
31
|
+
status: active
|
|
32
|
+
tags: ["google", "multimodal", "fast", "cost-effective"]
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
$schema: "https://raw.githubusercontent.com/ailib-official/ai-protocol/main/schemas/v1.json"
|
|
2
|
+
protocol_version: "1.1"
|
|
3
|
+
|
|
4
|
+
# GPT Model Instances
|
|
5
|
+
models:
|
|
6
|
+
gpt-4o:
|
|
7
|
+
provider: openai
|
|
8
|
+
model_id: "gpt-4o"
|
|
9
|
+
display_name: "GPT-4o"
|
|
10
|
+
verification:
|
|
11
|
+
status: verified
|
|
12
|
+
verified_at: "2026-01-28"
|
|
13
|
+
source: "list_models:/models"
|
|
14
|
+
context_window: 128000
|
|
15
|
+
capabilities: [chat, vision, tools, streaming, agentic, parallel_tools, reasoning]
|
|
16
|
+
pricing:
|
|
17
|
+
input_per_token: 0.000005
|
|
18
|
+
output_per_token: 0.000015
|
|
19
|
+
status: active
|
|
20
|
+
tags: ["gpt", "vision", "tools", "agentic", "reasoning"]
|
|
21
|
+
agentic_capabilities:
|
|
22
|
+
reasoning_effort: "high"
|
|
23
|
+
thinking_blocks: false
|
|
24
|
+
parallel_tools: true
|
|
25
|
+
max_parallel_tools: 5
|
|
26
|
+
builtin_tools: ["web_search", "code_execution"]
|
|
27
|
+
|
|
28
|
+
gpt-4o-mini:
|
|
29
|
+
provider: openai
|
|
30
|
+
model_id: "gpt-4o-mini"
|
|
31
|
+
display_name: "GPT-4o Mini"
|
|
32
|
+
verification:
|
|
33
|
+
status: verified
|
|
34
|
+
verified_at: "2026-01-28"
|
|
35
|
+
source: "list_models:/models"
|
|
36
|
+
context_window: 128000
|
|
37
|
+
capabilities: [chat, vision, tools, streaming, agentic, parallel_tools]
|
|
38
|
+
pricing:
|
|
39
|
+
input_per_token: 0.00000015
|
|
40
|
+
output_per_token: 0.0000006
|
|
41
|
+
status: active
|
|
42
|
+
tags: ["gpt", "vision", "tools", "cost-effective", "agentic"]
|
|
43
|
+
|
|
44
|
+
gpt-4-turbo:
|
|
45
|
+
provider: openai
|
|
46
|
+
model_id: "gpt-4-turbo"
|
|
47
|
+
display_name: "GPT-4 Turbo"
|
|
48
|
+
verification:
|
|
49
|
+
status: verified
|
|
50
|
+
verified_at: "2026-01-28"
|
|
51
|
+
source: "list_models:/models"
|
|
52
|
+
notes: "Not present in current /models list for this key; marked deprecated."
|
|
53
|
+
context_window: 128000
|
|
54
|
+
capabilities: [chat, vision, tools, streaming, agentic, parallel_tools]
|
|
55
|
+
pricing:
|
|
56
|
+
input_per_token: 0.00001
|
|
57
|
+
output_per_token: 0.00003
|
|
58
|
+
# VERIFIED_AT: 2026-01-28 (via OpenAI list_models: GET /v1/models) -> not present for this key.
|
|
59
|
+
status: deprecated
|
|
60
|
+
tags: ["gpt", "vision", "tools", "agentic"]
|
|
61
|
+
|
|
62
|
+
# VERIFIED_AT: 2026-01-28 (via OpenAI list_models: GET /v1/models)
|
|
63
|
+
gpt-4.1:
|
|
64
|
+
provider: openai
|
|
65
|
+
model_id: "gpt-4.1"
|
|
66
|
+
display_name: "GPT-4.1"
|
|
67
|
+
verification:
|
|
68
|
+
status: verified
|
|
69
|
+
verified_at: "2026-01-28"
|
|
70
|
+
source: "list_models:/models"
|
|
71
|
+
context_window: 128000
|
|
72
|
+
capabilities: [chat, vision, tools, streaming, agentic, parallel_tools, reasoning]
|
|
73
|
+
status: active
|
|
74
|
+
tags: ["gpt", "vision", "tools", "agentic", "reasoning"]
|
|
75
|
+
|
|
76
|
+
gpt-35-turbo:
|
|
77
|
+
provider: openai
|
|
78
|
+
model_id: "gpt-3.5-turbo"
|
|
79
|
+
display_name: "GPT-3.5 Turbo"
|
|
80
|
+
verification:
|
|
81
|
+
status: verified
|
|
82
|
+
verified_at: "2026-01-28"
|
|
83
|
+
source: "list_models:/models"
|
|
84
|
+
context_window: 16385
|
|
85
|
+
capabilities: [chat, tools, streaming, agentic]
|
|
86
|
+
pricing:
|
|
87
|
+
input_per_token: 0.0000015
|
|
88
|
+
output_per_token: 0.000002
|
|
89
|
+
status: active
|
|
90
|
+
tags: ["gpt", "tools", "cost-effective", "agentic"]
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
$schema: "https://raw.githubusercontent.com/ailib-official/ai-protocol/main/schemas/v1.json"
|
|
2
|
+
protocol_version: "1.5"
|
|
3
|
+
|
|
4
|
+
# Grok Model Instances (xAI)
|
|
5
|
+
models:
|
|
6
|
+
grok-2:
|
|
7
|
+
provider: xai
|
|
8
|
+
model_id: "grok-2"
|
|
9
|
+
display_name: "Grok-2"
|
|
10
|
+
verification:
|
|
11
|
+
status: unverified
|
|
12
|
+
source: "manual"
|
|
13
|
+
notes: "Pending API access for verification"
|
|
14
|
+
context_window: 128000
|
|
15
|
+
capabilities: [chat, vision, tools, streaming, agentic, parallel_tools, reasoning]
|
|
16
|
+
pricing:
|
|
17
|
+
input_per_token: null
|
|
18
|
+
output_per_token: null
|
|
19
|
+
status: active
|
|
20
|
+
tags: ["grok", "vision", "reasoning", "agentic", "real-time"]
|
|
21
|
+
agentic_capabilities:
|
|
22
|
+
reasoning_effort: "high"
|
|
23
|
+
thinking_blocks: false
|
|
24
|
+
parallel_tools: true
|
|
25
|
+
max_parallel_tools: 5
|
|
26
|
+
builtin_tools: ["web_search", "knowledge_access"]
|
|
27
|
+
|
|
28
|
+
grok-1.5-vision:
|
|
29
|
+
provider: xai
|
|
30
|
+
model_id: "grok-1.5-vision"
|
|
31
|
+
display_name: "Grok-1.5 Vision"
|
|
32
|
+
verification:
|
|
33
|
+
status: unverified
|
|
34
|
+
source: "manual"
|
|
35
|
+
notes: "Multimodal version with vision capabilities"
|
|
36
|
+
context_window: 128000
|
|
37
|
+
capabilities: [chat, vision, tools, streaming, agentic, parallel_tools, reasoning]
|
|
38
|
+
pricing:
|
|
39
|
+
input_per_token: null
|
|
40
|
+
output_per_token: null
|
|
41
|
+
status: active
|
|
42
|
+
tags: ["grok", "vision", "multimodal", "agentic", "reasoning"]
|
|
43
|
+
|
|
44
|
+
grok-1.5:
|
|
45
|
+
provider: xai
|
|
46
|
+
model_id: "grok-1.5"
|
|
47
|
+
display_name: "Grok-1.5"
|
|
48
|
+
verification:
|
|
49
|
+
status: unverified
|
|
50
|
+
source: "manual"
|
|
51
|
+
notes: "Enhanced reasoning capabilities"
|
|
52
|
+
context_window: 128000
|
|
53
|
+
capabilities: [chat, vision, tools, streaming, agentic, parallel_tools, reasoning]
|
|
54
|
+
pricing:
|
|
55
|
+
input_per_token: null
|
|
56
|
+
output_per_token: null
|
|
57
|
+
status: active
|
|
58
|
+
tags: ["grok", "reasoning", "agentic", "streaming"]
|
|
59
|
+
|
|
60
|
+
grok-beta:
|
|
61
|
+
provider: xai
|
|
62
|
+
model_id: "grok-beta"
|
|
63
|
+
display_name: "Grok Beta"
|
|
64
|
+
verification:
|
|
65
|
+
status: unverified
|
|
66
|
+
source: "manual"
|
|
67
|
+
notes: "Early access version"
|
|
68
|
+
context_window: 48000
|
|
69
|
+
capabilities: [chat, tools, streaming, agentic]
|
|
70
|
+
pricing:
|
|
71
|
+
input_per_token: null
|
|
72
|
+
output_per_token: null
|
|
73
|
+
status: beta
|
|
74
|
+
tags: ["grok", "beta", "agentic"]
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
$schema: "https://raw.githubusercontent.com/ailib-official/ai-protocol/main/schemas/v1.json"
|
|
2
|
+
protocol_version: "1.5"
|
|
3
|
+
|
|
4
|
+
# Hugging Face Popular Model Instances
|
|
5
|
+
# Notes: Hugging Face has 100K+ models; this is a curated list of popular open-source models
|
|
6
|
+
# Model ID format: {organization}/{model-name}
|
|
7
|
+
# Use connection_vars or path parameter to specify dynamic model_id
|
|
8
|
+
|
|
9
|
+
models:
|
|
10
|
+
# Meta Llama Series
|
|
11
|
+
llama-3.1-70b-instruct:
|
|
12
|
+
provider: huggingface
|
|
13
|
+
model_id: "meta-llama/Meta-Llama-3.1-70B-Instruct"
|
|
14
|
+
display_name: "Llama 3.1 70B Instruct"
|
|
15
|
+
verification:
|
|
16
|
+
status: verified
|
|
17
|
+
verified_at: "2026-01-31"
|
|
18
|
+
source: "models_hub"
|
|
19
|
+
notes: "Popular open-source model on Hugging Face"
|
|
20
|
+
context_window: 131072
|
|
21
|
+
capabilities: [chat, tools, streaming, agentic]
|
|
22
|
+
pricing:
|
|
23
|
+
input_per_token: null
|
|
24
|
+
output_per_token: null
|
|
25
|
+
status: active
|
|
26
|
+
tags: ["llama", "meta", "open-source", "instruct", "large-context"]
|
|
27
|
+
|
|
28
|
+
llama-3.1-8b-instruct:
|
|
29
|
+
provider: huggingface
|
|
30
|
+
model_id: "meta-llama/Meta-Llama-3.1-8B-Instruct"
|
|
31
|
+
display_name: "Llama 3.1 8B Instruct"
|
|
32
|
+
verification:
|
|
33
|
+
status: verified
|
|
34
|
+
verified_at: "2026-01-31"
|
|
35
|
+
source: "models_hub"
|
|
36
|
+
context_window: 131072
|
|
37
|
+
capabilities: [chat, tools, streaming, agentic]
|
|
38
|
+
pricing:
|
|
39
|
+
input_per_token: null
|
|
40
|
+
output_per_token: null
|
|
41
|
+
status: active
|
|
42
|
+
tags: ["llama", "meta", "open-source", "fast", "cost-effective"]
|
|
43
|
+
|
|
44
|
+
# Mistral Series
|
|
45
|
+
mistral-large:
|
|
46
|
+
provider: huggingface
|
|
47
|
+
model_id: "mistralai/Mistral-Large-Instruct-2407"
|
|
48
|
+
display_name: "Mistral Large"
|
|
49
|
+
verification:
|
|
50
|
+
status: verified
|
|
51
|
+
verified_at: "2026-01-31"
|
|
52
|
+
source: "models_hub"
|
|
53
|
+
context_window: 128000
|
|
54
|
+
capabilities: [chat, tools, streaming, agentic, reasoning]
|
|
55
|
+
pricing:
|
|
56
|
+
input_per_token: null
|
|
57
|
+
output_per_token: null
|
|
58
|
+
status: active
|
|
59
|
+
tags: ["mistral", "open-source", "reasoning", "agentic"]
|
|
60
|
+
|
|
61
|
+
# Qwen Series
|
|
62
|
+
qwen-2.5-72b-instruct:
|
|
63
|
+
provider: huggingface
|
|
64
|
+
model_id: "Qwen/Qwen2.5-72B-Instruct"
|
|
65
|
+
display_name: "Qwen 2.5 72B Instruct"
|
|
66
|
+
verification:
|
|
67
|
+
status: verified
|
|
68
|
+
verified_at: "2026-01-31"
|
|
69
|
+
source: "models_hub"
|
|
70
|
+
context_window: 131072
|
|
71
|
+
capabilities: [chat, vision, tools, streaming, agentic, reasoning]
|
|
72
|
+
pricing:
|
|
73
|
+
input_per_token: null
|
|
74
|
+
output_per_token: null
|
|
75
|
+
status: active
|
|
76
|
+
tags: ["qwen", "alibaba", "open-source", "multimodal", "reasoning"]
|
|
77
|
+
|
|
78
|
+
# DeepSeek Series
|
|
79
|
+
deepseek-coder:
|
|
80
|
+
provider: huggingface
|
|
81
|
+
model_id: "deepseek-ai/DeepSeek-Coder-V2-Lite-Instruct"
|
|
82
|
+
display_name: "DeepSeek Coder V2 Lite"
|
|
83
|
+
verification:
|
|
84
|
+
status: verified
|
|
85
|
+
verified_at: "2026-01-31"
|
|
86
|
+
source: "models_hub"
|
|
87
|
+
context_window: 128000
|
|
88
|
+
capabilities: [chat, tools, streaming, agentic, reasoning]
|
|
89
|
+
pricing:
|
|
90
|
+
input_per_token: null
|
|
91
|
+
output_per_token: null
|
|
92
|
+
status: active
|
|
93
|
+
tags: ["deepseek", "code", "open-source", "reasoning"]
|
|
94
|
+
|
|
95
|
+
# Code Models
|
|
96
|
+
codestral:
|
|
97
|
+
provider: huggingface
|
|
98
|
+
model_id: "mistralai/Codestral-22B-v0.1"
|
|
99
|
+
display_name: "Codestral"
|
|
100
|
+
verification:
|
|
101
|
+
status: verified
|
|
102
|
+
verified_at: "2026-01-31"
|
|
103
|
+
source: "models_hub"
|
|
104
|
+
context_window: 32000
|
|
105
|
+
capabilities: [chat, tools, streaming, agentic, reasoning]
|
|
106
|
+
pricing:
|
|
107
|
+
input_per_token: null
|
|
108
|
+
output_per_token: null
|
|
109
|
+
status: active
|
|
110
|
+
tags: ["mistral", "code", "open-source", "agentic"]
|