forked from mistralai/platform-docs-public
-
Notifications
You must be signed in to change notification settings - Fork 0
/
openapi.yaml
346 lines (341 loc) · 9.79 KB
/
openapi.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
openapi: 3.0.0
info:
title: Mistral AI API
description: Chat Completion and Embeddings APIs
version: 0.0.1
servers:
- url: 'https://api.mistral.ai/v1'
paths:
/chat/completions:
post:
operationId: createChatCompletion
summary: Create Chat Completions
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/ChatCompletionRequest'
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/ChatCompletionResponse'
/embeddings:
post:
operationId: createEmbedding
summary: Create Embeddings
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/EmbeddingRequest'
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/EmbeddingResponse'
/models:
get:
operationId: listModels
summary: List Available Models
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/ModelList'
components:
schemas:
Error:
type: object
properties:
type:
type: string
nullable: false
message:
type: string
nullable: false
param:
type: string
nullable: true
code:
type: string
nullable: true
required:
- type
- message
- param
- code
ErrorResponse:
type: object
properties:
error:
$ref: '#/components/schemas/Error'
required:
- error
ModelList:
type: object
properties:
object:
type: string
data:
type: array
items:
$ref: '#/components/schemas/Model'
required:
- object
- data
ChatCompletionRequest:
type: object
properties:
model:
description: |
ID of the model to use. You can use the [List Available Models](/api#operation/listModels) API to see all of your available models, or see our [Model overview](/models) for model descriptions.
type: string
example: "mistral-tiny"
messages:
description: |
The prompt(s) to generate completions for, encoded as a list of dict with role and content. The first prompt role should be `user` or `system`.
type: array
items:
type: object
properties:
role:
type: string
enum:
- system
- user
- assistant
content:
type: string
example: [
{"role": "user", "content": "What is the best French cheese?"}
]
temperature:
type: number
minimum: 0.0
maximum: 1.0
default: 0.7
example: 0.7
nullable: true
description: |
What sampling temperature to use, between 0.0 and 1.0. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic.
We generally recommend altering this or `top_p` but not both.
top_p:
type: number
minimum: 0.0
maximum: 1.0
default: 1.0
example: 1.0
nullable: true
description: |
Nucleus sampling, where the model considers the results of the tokens with `top_p` probability mass. So 0.1 means only the tokens comprising the top 10% probability mass are considered.
We generally recommend altering this or `temperature` but not both.
max_tokens:
type: integer
minimum: 0
default: null
example: 16
nullable: true
description: |
The maximum number of tokens to generate in the completion.
The token count of your prompt plus `max_tokens` cannot exceed the model's context length.
# Not supported yet
# stop:
# description: |
# Up to 4 sequences where the API will stop generating further tokens. The returned text will not contain the stop sequence.
# default: null
# nullable: true
# oneOf:
# - type: string
# default: <|endoftext|>
# example: |+
# nullable: true
# - type: array
# minItems: 1
# maxItems: 4
# items:
# type: string
# example: '["\n"]'
stream:
type: boolean
default: false
nullable: true
description: |
Whether to stream back partial progress. If set, tokens will be sent as data-only server-sent events as they become available, with the stream terminated by a data: [DONE] message. Otherwise, the server will hold the request open until the timeout or until completion, with the response containing the full result as JSON.
safe_prompt:
type: boolean
default: false
description: |
Whether to inject a safety prompt before all conversations.
random_seed:
type: integer
default: null
description: |
The seed to use for random sampling. If set, different calls will generate deterministic results.
required:
- model
- messages
ChatCompletionResponse:
type: object
properties:
id:
type: string
example: cmpl-e5cc70bb28c444948073e77776eb30ef
object:
type: string
example: "chat.completion"
created:
type: integer
example: 1702256327
model:
type: string
example: mistral-tiny
choices:
type: array
items:
type: object
required:
- index
- text
- finish_reason
properties:
index:
type: integer
example: 0
message:
type: object
properties:
role:
type: string
enum:
- user
- assistant
example: assistant
content:
type: string
example: "I don't have a favorite condiment as I don't consume food or condiments. However, I can tell you that many people enjoy using ketchup, mayonnaise, hot sauce, soy sauce, or mustard as condiments to enhance the flavor of their meals. Some people also enjoy using herbs, spices, or vinegars as condiments. Ultimately, the best condiment is a matter of personal preference."
finish_reason:
type: string
enum:
- stop
- length
- model_length
usage:
type: object
properties:
prompt_tokens:
type: integer
example: 14
completion_tokens:
type: integer
example: 93
total_tokens:
type: integer
example: 107
required:
- prompt_tokens
- completion_tokens
- total_tokens
EmbeddingRequest:
type: object
properties:
model:
type: string
example: "mistral-embed"
description: |
The ID of the model to use for this request.
input:
type: array
items:
type: string
example: ["Hello", "world"]
description: |
The list of strings to embed.
encoding_format:
type: string
enum:
- "float"
example: "float"
description: |
The format of the output data.
EmbeddingResponse:
type: object
properties:
id:
type: string
example: embd-aad6fc62b17349b192ef09225058bc45
object:
type: string
example: list
data:
type: array
items:
type: object
properties:
object:
type: string
example: embedding
embedding:
type: array
items:
type: number
example: [0.1, 0.2, 0.3]
index:
type: int
example: 0
example: [
{
"object": "embedding",
"embedding": [0.1, 0.2, 0.3],
"index": 0
},
{
"object": "embedding",
"embedding": [0.4, 0.5, 0.6],
"index": 1
}
]
model:
type: string
usage:
type: object
properties:
prompt_tokens:
type: integer
example: 9
total_tokens:
type: integer
example: 9
required:
- prompt_tokens
- total_tokens
required:
- id
- object
- data
- model
- usage
Model:
title: Model
properties:
id:
type: string
object:
type: string
created:
type: integer
owned_by:
type: string
required:
- id
- object
- created
- owned_by