ask-llm-providers 0.2.2 → 0.3.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +18 -1
- data/lib/ask/llm/aliases.json +11 -0
- data/lib/ask/llm/aliases.rb +62 -0
- data/lib/ask/llm/catalog.rb +194 -0
- data/lib/ask/llm/models/anthropic.json +188 -0
- data/lib/ask/llm/models/bedrock.json +1 -0
- data/lib/ask/llm/models/cloudflare.json +1 -0
- data/lib/ask/llm/models/deepseek.json +85 -0
- data/lib/ask/llm/models/gemini.json +151 -0
- data/lib/ask/llm/models/mimo.json +22 -0
- data/lib/ask/llm/models/mistral.json +62 -0
- data/lib/ask/llm/models/ollama.json +136 -0
- data/lib/ask/llm/models/openai.json +294 -0
- data/lib/ask/llm/models/opencode.json +189 -0
- data/lib/ask/llm/models/opencode_go.json +149 -0
- data/lib/ask/llm/models/openrouter.json +115 -0
- data/lib/ask/llm/models_schema.json +74 -0
- data/lib/ask/llm/version.rb +1 -1
- data/lib/ask-llm-providers.rb +4 -17
- metadata +17 -2
- data/lib/ask/llm/models/openai.rb +0 -69
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"id": "gemini-2.5-pro",
|
|
4
|
+
"name": "Gemini 2.5 Pro",
|
|
5
|
+
"family": "gemini",
|
|
6
|
+
"context_window": 1048576,
|
|
7
|
+
"max_output_tokens": 65536,
|
|
8
|
+
"capabilities": [
|
|
9
|
+
"function_calling",
|
|
10
|
+
"streaming",
|
|
11
|
+
"structured_output",
|
|
12
|
+
"vision",
|
|
13
|
+
"reasoning"
|
|
14
|
+
],
|
|
15
|
+
"modalities": {
|
|
16
|
+
"input": [
|
|
17
|
+
"text",
|
|
18
|
+
"image",
|
|
19
|
+
"audio",
|
|
20
|
+
"video",
|
|
21
|
+
"pdf"
|
|
22
|
+
],
|
|
23
|
+
"output": [
|
|
24
|
+
"text"
|
|
25
|
+
]
|
|
26
|
+
},
|
|
27
|
+
"provider": "gemini"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"id": "gemini-2.5-flash",
|
|
31
|
+
"name": "Gemini 2.5 Flash",
|
|
32
|
+
"family": "gemini",
|
|
33
|
+
"context_window": 1048576,
|
|
34
|
+
"max_output_tokens": 65536,
|
|
35
|
+
"capabilities": [
|
|
36
|
+
"function_calling",
|
|
37
|
+
"streaming",
|
|
38
|
+
"structured_output",
|
|
39
|
+
"vision"
|
|
40
|
+
],
|
|
41
|
+
"modalities": {
|
|
42
|
+
"input": [
|
|
43
|
+
"text",
|
|
44
|
+
"image",
|
|
45
|
+
"audio",
|
|
46
|
+
"video",
|
|
47
|
+
"pdf"
|
|
48
|
+
],
|
|
49
|
+
"output": [
|
|
50
|
+
"text"
|
|
51
|
+
]
|
|
52
|
+
},
|
|
53
|
+
"provider": "gemini"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"id": "gemini-2.0-flash",
|
|
57
|
+
"name": "Gemini 2.0 Flash",
|
|
58
|
+
"family": "gemini",
|
|
59
|
+
"context_window": 1048576,
|
|
60
|
+
"max_output_tokens": 8192,
|
|
61
|
+
"capabilities": [
|
|
62
|
+
"function_calling",
|
|
63
|
+
"streaming",
|
|
64
|
+
"structured_output",
|
|
65
|
+
"vision"
|
|
66
|
+
],
|
|
67
|
+
"modalities": {
|
|
68
|
+
"input": [
|
|
69
|
+
"text",
|
|
70
|
+
"image",
|
|
71
|
+
"audio",
|
|
72
|
+
"video",
|
|
73
|
+
"pdf"
|
|
74
|
+
],
|
|
75
|
+
"output": [
|
|
76
|
+
"text"
|
|
77
|
+
]
|
|
78
|
+
},
|
|
79
|
+
"provider": "gemini"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"id": "gemini-1.5-pro",
|
|
83
|
+
"name": "Gemini 1.5 Pro",
|
|
84
|
+
"family": "gemini",
|
|
85
|
+
"context_window": 2097152,
|
|
86
|
+
"max_output_tokens": 8192,
|
|
87
|
+
"capabilities": [
|
|
88
|
+
"function_calling",
|
|
89
|
+
"streaming",
|
|
90
|
+
"structured_output",
|
|
91
|
+
"vision"
|
|
92
|
+
],
|
|
93
|
+
"modalities": {
|
|
94
|
+
"input": [
|
|
95
|
+
"text",
|
|
96
|
+
"image",
|
|
97
|
+
"audio",
|
|
98
|
+
"video",
|
|
99
|
+
"pdf"
|
|
100
|
+
],
|
|
101
|
+
"output": [
|
|
102
|
+
"text"
|
|
103
|
+
]
|
|
104
|
+
},
|
|
105
|
+
"provider": "gemini"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"id": "gemini-1.5-flash",
|
|
109
|
+
"name": "Gemini 1.5 Flash",
|
|
110
|
+
"family": "gemini",
|
|
111
|
+
"context_window": 1048576,
|
|
112
|
+
"max_output_tokens": 8192,
|
|
113
|
+
"capabilities": [
|
|
114
|
+
"function_calling",
|
|
115
|
+
"streaming",
|
|
116
|
+
"structured_output",
|
|
117
|
+
"vision"
|
|
118
|
+
],
|
|
119
|
+
"modalities": {
|
|
120
|
+
"input": [
|
|
121
|
+
"text",
|
|
122
|
+
"image",
|
|
123
|
+
"audio",
|
|
124
|
+
"video",
|
|
125
|
+
"pdf"
|
|
126
|
+
],
|
|
127
|
+
"output": [
|
|
128
|
+
"text"
|
|
129
|
+
]
|
|
130
|
+
},
|
|
131
|
+
"provider": "gemini"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"id": "text-embedding-004",
|
|
135
|
+
"name": "Text Embedding 004",
|
|
136
|
+
"family": "embedding",
|
|
137
|
+
"context_window": 2048,
|
|
138
|
+
"capabilities": [
|
|
139
|
+
"embedding"
|
|
140
|
+
],
|
|
141
|
+
"modalities": {
|
|
142
|
+
"input": [
|
|
143
|
+
"text"
|
|
144
|
+
],
|
|
145
|
+
"output": [
|
|
146
|
+
"embeddings"
|
|
147
|
+
]
|
|
148
|
+
},
|
|
149
|
+
"provider": "gemini"
|
|
150
|
+
}
|
|
151
|
+
]
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"id": "mimo-v2.5-pro",
|
|
4
|
+
"name": "MIMO V2.5 Pro",
|
|
5
|
+
"family": "mimo",
|
|
6
|
+
"context_window": 128000,
|
|
7
|
+
"max_output_tokens": 64000,
|
|
8
|
+
"capabilities": [
|
|
9
|
+
"function_calling",
|
|
10
|
+
"streaming"
|
|
11
|
+
],
|
|
12
|
+
"modalities": {
|
|
13
|
+
"input": [
|
|
14
|
+
"text"
|
|
15
|
+
],
|
|
16
|
+
"output": [
|
|
17
|
+
"text"
|
|
18
|
+
]
|
|
19
|
+
},
|
|
20
|
+
"provider": "mimo"
|
|
21
|
+
}
|
|
22
|
+
]
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"id": "mistral-large-2501",
|
|
4
|
+
"name": "Mistral Large",
|
|
5
|
+
"family": "mistral",
|
|
6
|
+
"context_window": 128000,
|
|
7
|
+
"max_output_tokens": 4096,
|
|
8
|
+
"capabilities": [
|
|
9
|
+
"function_calling",
|
|
10
|
+
"streaming",
|
|
11
|
+
"structured_output"
|
|
12
|
+
],
|
|
13
|
+
"modalities": {
|
|
14
|
+
"input": [
|
|
15
|
+
"text"
|
|
16
|
+
],
|
|
17
|
+
"output": [
|
|
18
|
+
"text"
|
|
19
|
+
]
|
|
20
|
+
},
|
|
21
|
+
"provider": "mistral"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"id": "mistral-small-2501",
|
|
25
|
+
"name": "Mistral Small",
|
|
26
|
+
"family": "mistral",
|
|
27
|
+
"context_window": 128000,
|
|
28
|
+
"max_output_tokens": 4096,
|
|
29
|
+
"capabilities": [
|
|
30
|
+
"function_calling",
|
|
31
|
+
"streaming",
|
|
32
|
+
"structured_output"
|
|
33
|
+
],
|
|
34
|
+
"modalities": {
|
|
35
|
+
"input": [
|
|
36
|
+
"text"
|
|
37
|
+
],
|
|
38
|
+
"output": [
|
|
39
|
+
"text"
|
|
40
|
+
]
|
|
41
|
+
},
|
|
42
|
+
"provider": "mistral"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"id": "mistral-embed",
|
|
46
|
+
"name": "Mistral Embed",
|
|
47
|
+
"family": "mistral",
|
|
48
|
+
"context_window": 8192,
|
|
49
|
+
"capabilities": [
|
|
50
|
+
"embedding"
|
|
51
|
+
],
|
|
52
|
+
"modalities": {
|
|
53
|
+
"input": [
|
|
54
|
+
"text"
|
|
55
|
+
],
|
|
56
|
+
"output": [
|
|
57
|
+
"embeddings"
|
|
58
|
+
]
|
|
59
|
+
},
|
|
60
|
+
"provider": "mistral"
|
|
61
|
+
}
|
|
62
|
+
]
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"id": "llama3.2",
|
|
4
|
+
"name": "Llama 3.2",
|
|
5
|
+
"family": "llama",
|
|
6
|
+
"context_window": 8192,
|
|
7
|
+
"capabilities": [
|
|
8
|
+
"streaming",
|
|
9
|
+
"function_calling"
|
|
10
|
+
],
|
|
11
|
+
"modalities": {
|
|
12
|
+
"input": [
|
|
13
|
+
"text"
|
|
14
|
+
],
|
|
15
|
+
"output": [
|
|
16
|
+
"text"
|
|
17
|
+
]
|
|
18
|
+
},
|
|
19
|
+
"provider": "ollama"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"id": "llama3.3",
|
|
23
|
+
"name": "Llama 3.3",
|
|
24
|
+
"family": "llama",
|
|
25
|
+
"context_window": 8192,
|
|
26
|
+
"capabilities": [
|
|
27
|
+
"streaming",
|
|
28
|
+
"function_calling"
|
|
29
|
+
],
|
|
30
|
+
"modalities": {
|
|
31
|
+
"input": [
|
|
32
|
+
"text"
|
|
33
|
+
],
|
|
34
|
+
"output": [
|
|
35
|
+
"text"
|
|
36
|
+
]
|
|
37
|
+
},
|
|
38
|
+
"provider": "ollama"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"id": "mistral",
|
|
42
|
+
"name": "Mistral",
|
|
43
|
+
"family": "mistral",
|
|
44
|
+
"context_window": 8192,
|
|
45
|
+
"capabilities": [
|
|
46
|
+
"streaming",
|
|
47
|
+
"function_calling"
|
|
48
|
+
],
|
|
49
|
+
"modalities": {
|
|
50
|
+
"input": [
|
|
51
|
+
"text"
|
|
52
|
+
],
|
|
53
|
+
"output": [
|
|
54
|
+
"text"
|
|
55
|
+
]
|
|
56
|
+
},
|
|
57
|
+
"provider": "ollama"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"id": "gemma3",
|
|
61
|
+
"name": "Gemma 3",
|
|
62
|
+
"family": "gemma",
|
|
63
|
+
"context_window": 8192,
|
|
64
|
+
"capabilities": [
|
|
65
|
+
"streaming",
|
|
66
|
+
"function_calling"
|
|
67
|
+
],
|
|
68
|
+
"modalities": {
|
|
69
|
+
"input": [
|
|
70
|
+
"text"
|
|
71
|
+
],
|
|
72
|
+
"output": [
|
|
73
|
+
"text"
|
|
74
|
+
]
|
|
75
|
+
},
|
|
76
|
+
"provider": "ollama"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"id": "phi4",
|
|
80
|
+
"name": "Phi-4",
|
|
81
|
+
"family": "phi",
|
|
82
|
+
"context_window": 8192,
|
|
83
|
+
"capabilities": [
|
|
84
|
+
"streaming",
|
|
85
|
+
"function_calling"
|
|
86
|
+
],
|
|
87
|
+
"modalities": {
|
|
88
|
+
"input": [
|
|
89
|
+
"text"
|
|
90
|
+
],
|
|
91
|
+
"output": [
|
|
92
|
+
"text"
|
|
93
|
+
]
|
|
94
|
+
},
|
|
95
|
+
"provider": "ollama"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"id": "qwen2.5",
|
|
99
|
+
"name": "Qwen 2.5",
|
|
100
|
+
"family": "qwen",
|
|
101
|
+
"context_window": 32768,
|
|
102
|
+
"capabilities": [
|
|
103
|
+
"streaming",
|
|
104
|
+
"function_calling",
|
|
105
|
+
"structured_output"
|
|
106
|
+
],
|
|
107
|
+
"modalities": {
|
|
108
|
+
"input": [
|
|
109
|
+
"text"
|
|
110
|
+
],
|
|
111
|
+
"output": [
|
|
112
|
+
"text"
|
|
113
|
+
]
|
|
114
|
+
},
|
|
115
|
+
"provider": "ollama"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"id": "deepseek-r1",
|
|
119
|
+
"name": "DeepSeek R1",
|
|
120
|
+
"family": "deepseek",
|
|
121
|
+
"context_window": 8192,
|
|
122
|
+
"capabilities": [
|
|
123
|
+
"streaming",
|
|
124
|
+
"reasoning"
|
|
125
|
+
],
|
|
126
|
+
"modalities": {
|
|
127
|
+
"input": [
|
|
128
|
+
"text"
|
|
129
|
+
],
|
|
130
|
+
"output": [
|
|
131
|
+
"text"
|
|
132
|
+
]
|
|
133
|
+
},
|
|
134
|
+
"provider": "ollama"
|
|
135
|
+
}
|
|
136
|
+
]
|
|
@@ -0,0 +1,294 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"id": "gpt-4o",
|
|
4
|
+
"name": "GPT-4o",
|
|
5
|
+
"family": "gpt4o",
|
|
6
|
+
"context_window": 128000,
|
|
7
|
+
"max_output_tokens": 16384,
|
|
8
|
+
"capabilities": [
|
|
9
|
+
"function_calling",
|
|
10
|
+
"streaming",
|
|
11
|
+
"structured_output",
|
|
12
|
+
"vision"
|
|
13
|
+
],
|
|
14
|
+
"modalities": {
|
|
15
|
+
"input": [
|
|
16
|
+
"text",
|
|
17
|
+
"image"
|
|
18
|
+
],
|
|
19
|
+
"output": [
|
|
20
|
+
"text"
|
|
21
|
+
]
|
|
22
|
+
},
|
|
23
|
+
"provider": "openai"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"id": "gpt-4o-mini",
|
|
27
|
+
"name": "GPT-4o Mini",
|
|
28
|
+
"family": "gpt4o_mini",
|
|
29
|
+
"context_window": 128000,
|
|
30
|
+
"max_output_tokens": 16384,
|
|
31
|
+
"capabilities": [
|
|
32
|
+
"function_calling",
|
|
33
|
+
"streaming",
|
|
34
|
+
"structured_output",
|
|
35
|
+
"vision"
|
|
36
|
+
],
|
|
37
|
+
"modalities": {
|
|
38
|
+
"input": [
|
|
39
|
+
"text",
|
|
40
|
+
"image"
|
|
41
|
+
],
|
|
42
|
+
"output": [
|
|
43
|
+
"text"
|
|
44
|
+
]
|
|
45
|
+
},
|
|
46
|
+
"provider": "openai"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"id": "gpt-4.1",
|
|
50
|
+
"name": "GPT-4.1",
|
|
51
|
+
"family": "gpt41",
|
|
52
|
+
"context_window": 1047576,
|
|
53
|
+
"max_output_tokens": 32768,
|
|
54
|
+
"capabilities": [
|
|
55
|
+
"function_calling",
|
|
56
|
+
"streaming",
|
|
57
|
+
"structured_output",
|
|
58
|
+
"vision"
|
|
59
|
+
],
|
|
60
|
+
"modalities": {
|
|
61
|
+
"input": [
|
|
62
|
+
"text",
|
|
63
|
+
"image"
|
|
64
|
+
],
|
|
65
|
+
"output": [
|
|
66
|
+
"text"
|
|
67
|
+
]
|
|
68
|
+
},
|
|
69
|
+
"provider": "openai"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"id": "gpt-4.1-mini",
|
|
73
|
+
"name": "GPT-4.1 Mini",
|
|
74
|
+
"family": "gpt41_mini",
|
|
75
|
+
"context_window": 1047576,
|
|
76
|
+
"max_output_tokens": 32768,
|
|
77
|
+
"capabilities": [
|
|
78
|
+
"function_calling",
|
|
79
|
+
"streaming",
|
|
80
|
+
"structured_output",
|
|
81
|
+
"vision"
|
|
82
|
+
],
|
|
83
|
+
"modalities": {
|
|
84
|
+
"input": [
|
|
85
|
+
"text",
|
|
86
|
+
"image"
|
|
87
|
+
],
|
|
88
|
+
"output": [
|
|
89
|
+
"text"
|
|
90
|
+
]
|
|
91
|
+
},
|
|
92
|
+
"provider": "openai"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"id": "gpt-4.1-nano",
|
|
96
|
+
"name": "GPT-4.1 Nano",
|
|
97
|
+
"family": "gpt41_nano",
|
|
98
|
+
"context_window": 1047576,
|
|
99
|
+
"max_output_tokens": 32768,
|
|
100
|
+
"capabilities": [
|
|
101
|
+
"function_calling",
|
|
102
|
+
"streaming",
|
|
103
|
+
"structured_output",
|
|
104
|
+
"vision"
|
|
105
|
+
],
|
|
106
|
+
"modalities": {
|
|
107
|
+
"input": [
|
|
108
|
+
"text",
|
|
109
|
+
"image"
|
|
110
|
+
],
|
|
111
|
+
"output": [
|
|
112
|
+
"text"
|
|
113
|
+
]
|
|
114
|
+
},
|
|
115
|
+
"provider": "openai"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"id": "gpt-4.5-preview",
|
|
119
|
+
"name": "GPT-4.5 Preview",
|
|
120
|
+
"family": "gpt45",
|
|
121
|
+
"context_window": 128000,
|
|
122
|
+
"max_output_tokens": 16384,
|
|
123
|
+
"capabilities": [
|
|
124
|
+
"function_calling",
|
|
125
|
+
"streaming",
|
|
126
|
+
"structured_output",
|
|
127
|
+
"vision"
|
|
128
|
+
],
|
|
129
|
+
"modalities": {
|
|
130
|
+
"input": [
|
|
131
|
+
"text",
|
|
132
|
+
"image"
|
|
133
|
+
],
|
|
134
|
+
"output": [
|
|
135
|
+
"text"
|
|
136
|
+
]
|
|
137
|
+
},
|
|
138
|
+
"provider": "openai"
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"id": "o1",
|
|
142
|
+
"name": "o1",
|
|
143
|
+
"family": "o1",
|
|
144
|
+
"context_window": 200000,
|
|
145
|
+
"max_output_tokens": 100000,
|
|
146
|
+
"capabilities": [
|
|
147
|
+
"function_calling",
|
|
148
|
+
"streaming",
|
|
149
|
+
"structured_output",
|
|
150
|
+
"reasoning"
|
|
151
|
+
],
|
|
152
|
+
"modalities": {
|
|
153
|
+
"input": [
|
|
154
|
+
"text",
|
|
155
|
+
"image"
|
|
156
|
+
],
|
|
157
|
+
"output": [
|
|
158
|
+
"text"
|
|
159
|
+
]
|
|
160
|
+
},
|
|
161
|
+
"provider": "openai"
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"id": "o3-mini",
|
|
165
|
+
"name": "o3-mini",
|
|
166
|
+
"family": "o3_mini",
|
|
167
|
+
"context_window": 200000,
|
|
168
|
+
"max_output_tokens": 100000,
|
|
169
|
+
"capabilities": [
|
|
170
|
+
"function_calling",
|
|
171
|
+
"streaming",
|
|
172
|
+
"structured_output",
|
|
173
|
+
"reasoning"
|
|
174
|
+
],
|
|
175
|
+
"modalities": {
|
|
176
|
+
"input": [
|
|
177
|
+
"text",
|
|
178
|
+
"image"
|
|
179
|
+
],
|
|
180
|
+
"output": [
|
|
181
|
+
"text"
|
|
182
|
+
]
|
|
183
|
+
},
|
|
184
|
+
"provider": "openai"
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"id": "gpt-4o-audio-preview",
|
|
188
|
+
"name": "GPT-4o Audio Preview",
|
|
189
|
+
"family": "gpt4o_audio",
|
|
190
|
+
"context_window": 128000,
|
|
191
|
+
"capabilities": [
|
|
192
|
+
"streaming",
|
|
193
|
+
"audio"
|
|
194
|
+
],
|
|
195
|
+
"modalities": {
|
|
196
|
+
"input": [
|
|
197
|
+
"text",
|
|
198
|
+
"audio"
|
|
199
|
+
],
|
|
200
|
+
"output": [
|
|
201
|
+
"text",
|
|
202
|
+
"audio"
|
|
203
|
+
]
|
|
204
|
+
},
|
|
205
|
+
"provider": "openai"
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"id": "text-embedding-3-large",
|
|
209
|
+
"name": "Text Embedding 3 Large",
|
|
210
|
+
"family": "embedding3_large",
|
|
211
|
+
"context_window": 8191,
|
|
212
|
+
"capabilities": [
|
|
213
|
+
"embedding"
|
|
214
|
+
],
|
|
215
|
+
"modalities": {
|
|
216
|
+
"input": [
|
|
217
|
+
"text"
|
|
218
|
+
],
|
|
219
|
+
"output": [
|
|
220
|
+
"embeddings"
|
|
221
|
+
]
|
|
222
|
+
},
|
|
223
|
+
"provider": "openai"
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"id": "text-embedding-3-small",
|
|
227
|
+
"name": "Text Embedding 3 Small",
|
|
228
|
+
"family": "embedding3_small",
|
|
229
|
+
"context_window": 8191,
|
|
230
|
+
"capabilities": [
|
|
231
|
+
"embedding"
|
|
232
|
+
],
|
|
233
|
+
"modalities": {
|
|
234
|
+
"input": [
|
|
235
|
+
"text"
|
|
236
|
+
],
|
|
237
|
+
"output": [
|
|
238
|
+
"embeddings"
|
|
239
|
+
]
|
|
240
|
+
},
|
|
241
|
+
"provider": "openai"
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"id": "whisper-1",
|
|
245
|
+
"name": "Whisper",
|
|
246
|
+
"family": "whisper",
|
|
247
|
+
"capabilities": [
|
|
248
|
+
"audio"
|
|
249
|
+
],
|
|
250
|
+
"modalities": {
|
|
251
|
+
"input": [
|
|
252
|
+
"audio"
|
|
253
|
+
],
|
|
254
|
+
"output": [
|
|
255
|
+
"text"
|
|
256
|
+
]
|
|
257
|
+
},
|
|
258
|
+
"provider": "openai"
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
"id": "tts-1",
|
|
262
|
+
"name": "TTS-1",
|
|
263
|
+
"family": "tts1",
|
|
264
|
+
"capabilities": [
|
|
265
|
+
"audio"
|
|
266
|
+
],
|
|
267
|
+
"modalities": {
|
|
268
|
+
"input": [
|
|
269
|
+
"text"
|
|
270
|
+
],
|
|
271
|
+
"output": [
|
|
272
|
+
"audio"
|
|
273
|
+
]
|
|
274
|
+
},
|
|
275
|
+
"provider": "openai"
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"id": "dall-e-3",
|
|
279
|
+
"name": "DALL-E 3",
|
|
280
|
+
"family": "dall_e",
|
|
281
|
+
"capabilities": [
|
|
282
|
+
"image"
|
|
283
|
+
],
|
|
284
|
+
"modalities": {
|
|
285
|
+
"input": [
|
|
286
|
+
"text"
|
|
287
|
+
],
|
|
288
|
+
"output": [
|
|
289
|
+
"image"
|
|
290
|
+
]
|
|
291
|
+
},
|
|
292
|
+
"provider": "openai"
|
|
293
|
+
}
|
|
294
|
+
]
|