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
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
use serde::{Deserialize, Serialize};
use super::resources::{
content_part::ContentPart, conversation::Conversation, error::RealtimeError, item::Item,
rate_limit::RateLimit, response::Response, session::Session,
};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub struct Error {
/// The unique ID of the server event.
pub event_id: String,
/// The event type, must be "error".
pub r#type: String,
/// Details of the error.
pub error: RealtimeError,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub struct SessionCreated {
/// The unique ID of the server event.
pub event_id: String,
/// The event type, must be "session.created".
pub r#type: String,
/// The session resource.
pub session: Session,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub struct SessionUpdated {
/// The unique ID of the server event.
pub event_id: String,
/// The event type, must be "session.updated".
pub r#type: String,
/// The updated session resource.
pub session: Session,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub struct ConversationCreated {
/// The unique ID of the server event.
pub event_id: String,
/// The event type, must be "conversation.created".
pub r#type: String,
/// The conversation resource.
pub conversation: Conversation,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub struct InputAudioBufferCommitted {
/// The unique ID of the server event.
pub event_id: String,
/// The event type, must be "input_audio_buffer.committed".
pub r#type: String,
/// The ID of the preceding item after which the new item will be inserted.
pub previous_item_id: String,
/// The ID of the user message item that will be created.
pub item_id: String,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub struct InputAudioBufferCleared {
/// The unique ID of the server event.
pub event_id: String,
/// The event type, must be "input_audio_buffer.cleared".
pub r#type: String,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub struct InputAudioBufferSpeechStarted {
/// The unique ID of the server event.
pub event_id: String,
/// The event type, must be "input_audio_buffer.speech_started".
pub r#type: String,
/// Milliseconds since the session started when speech was detected.
pub audio_start_ms: u32,
/// The ID of the user message item that will be created when speech stops.
pub item_id: String,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub struct InputAudioBufferSpeechStopped {
/// The unique ID of the server event.
pub event_id: String,
/// The event type, must be "input_audio_buffer.speech_stopped".
pub r#type: String,
/// Milliseconds since the session started when speech stopped.
pub audio_start_ms: u32,
/// The ID of the user message item that will be created.
pub item_id: String,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub struct ConversationItemCreated {
/// The unique ID of the server event.
pub event_id: String,
/// The event type, must be "conversation.item.created".
pub r#type: String,
/// The ID of the preceding item.
pub previous_item_id: Option<String>,
/// The item that was created.
pub item: Item,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub struct ConversationItemInputAudioTranscriptionCompleted {
/// The unique ID of the server event.
pub event_id: String,
/// The event type, must be "conversation.item.input_audio_transcription.completed".
pub r#type: String,
/// The ID of the user message item.
pub item_id: String,
/// The index of the content part containing the audio.
pub content_index: u32,
/// The transcribed text.
pub transcript: String,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub struct ConversationItemInputAudioTranscriptionFailed {
/// The unique ID of the server event.
pub event_id: String,
/// The event type, must be "conversation.item.input_audio_transcription.failed".
pub r#type: String,
/// The ID of the user message item.
pub item_id: String,
/// The index of the content part containing the audio.
pub content_index: u32,
/// Details of the transcription error.
pub error: RealtimeError,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub struct ConversationItemTruncated {
/// The unique ID of the server event.
pub event_id: String,
/// The event type, must be "conversation.item.truncated".
pub r#type: String,
/// The ID of the assistant message item that was truncated.
pub item_id: String,
/// The index of the content part that was truncated.
pub content_index: u32,
/// The duration up to which the audio was truncated, in milliseconds.
pub audio_end_ms: u32,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub struct ConversationItemDeleted {
/// The unique ID of the server event.
pub event_id: String,
/// The event type, must be "conversation.item.deleted".
pub r#type: String,
/// The ID of the item that was deleted.
pub item_id: String,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub struct ResponseCreated {
/// The unique ID of the server event.
pub event_id: String,
/// The event type, must be "response.created".
pub r#type: String,
/// The response resource.
pub response: Response,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub struct ResponseDone {
/// The unique ID of the server event.
pub event_id: String,
/// The event type, must be "response.done".
pub r#type: String,
/// The response resource.
pub response: Response,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub struct ResponseOutputItemAdded {
/// The unique ID of the server event.
pub event_id: String,
/// The event type, must be "response.output_item.added".
pub r#type: String,
/// The ID of the response to which the item belongs.
pub response_id: String,
/// The index of the output item in the response.
pub output_index: u32,
/// The item that was added.
pub item: Item,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub struct ResponseOutputItemDone {
/// The unique ID of the server event.
pub event_id: String,
/// The event type, must be "response.output_item.done".
pub r#type: String,
/// The ID of the response to which the item belongs.
pub response_id: String,
/// The index of the output item in the response.
pub output_index: u32,
/// The completed item.
pub item: Item,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub struct ResponseContentPartAdded {
/// The unique ID of the server event.
pub event_id: String,
/// The event type, must be "response.content_part.added".
pub r#type: String,
/// The ID of the response.
pub response_id: String,
/// The ID of the item to which the content part was added.
pub item_id: String,
/// The index of the output item in the response.
pub output_index: u32,
/// The index of the content part in the item's content array.
pub content_index: u32,
/// The content part that was added.
pub part: ContentPart,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub struct ResponseContentPartDone {
/// The unique ID of the server event.
pub event_id: String,
/// The event type, must be "response.content_part.done".
pub r#type: String,
/// The ID of the response.
pub response_id: String,
/// The ID of the item to which the content part was added.
pub item_id: String,
/// The index of the output item in the response.
pub output_index: u32,
/// The index of the content part in the item's content array.
pub content_index: u32,
/// The content part that is done.
pub part: ContentPart,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub struct ResponseTextDelta {
/// The unique ID of the server event.
pub event_id: String,
/// The event type, must be "response.text.delta".
pub r#type: String,
/// The ID of the response.
pub response_id: String,
/// The ID of the item.
pub item_id: String,
/// The index of the output item in the response.
pub output_index: u32,
/// The index of the content part in the item's content array.
pub content_index: u32,
/// The text delta.
pub delta: String,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub struct ResponseTextDone {
/// The unique ID of the server event.
pub event_id: String,
/// The event type, must be "response.text.done".
pub r#type: String,
/// The ID of the response.
pub response_id: String,
/// The ID of the item.
pub item_id: String,
/// The index of the output item in the response.
pub output_index: u32,
/// The index of the content part in the item's content array.
pub content_index: u32,
/// The final text content.
pub text: String,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub struct ResponseAudioTranscriptDelta {
/// The unique ID of the server event.
pub event_id: String,
/// The event type, must be "response.audio_transcript.delta".
pub r#type: String,
/// The ID of the response.
pub response_id: String,
/// The ID of the item.
pub item_id: String,
/// The index of the output item in the response.
pub output_index: u32,
/// The index of the content part in the item's content array.
pub content_index: u32,
/// The transcript delta.
pub delta: String,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub struct ResponseAudioTranscriptDone {
/// The unique ID of the server event.
pub event_id: String,
/// The event type, must be "response.audio_transcript.done".
pub r#type: String,
/// The ID of the response.
pub response_id: String,
/// The ID of the item.
pub item_id: String,
/// The index of the output item in the response.
pub output_index: u32,
/// The index of the content part in the item's content array.
pub content_index: u32,
/// The final transcript of the audio.
pub transcript: String,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub struct ResponseAudioDelta {
/// The unique ID of the server event.
pub event_id: String,
/// The event type, must be "response.audio.delta".
pub r#type: String,
/// The ID of the response.
pub response_id: String,
/// The ID of the item.
pub item_id: String,
/// The index of the output item in the response.
pub output_index: u32,
/// The index of the content part in the item's content array.
pub content_index: u32,
/// Base64-encoded audio data delta.
pub delta: String,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub struct ResponseAudioDone {
/// The unique ID of the server event.
pub event_id: String,
/// The event type, must be "response.audio.done".
pub r#type: String,
/// The ID of the response.
pub response_id: String,
/// The ID of the item.
pub item_id: String,
/// The index of the output item in the response.
pub output_index: u32,
/// The index of the content part in the item's content array.
pub content_index: u32,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub struct ResponseFunctionCallArgumentsDelta {
/// The unique ID of the server event.
pub event_id: String,
/// The event type, must be "response.function_call_arguments.delta".
pub r#type: String,
/// The ID of the response.
pub response_id: String,
/// The ID of the function call item.
pub item_id: String,
/// The index of the output item in the response.
pub output_index: u32,
/// The ID of the function call.
pub call_id: String,
/// The arguments delta as a JSON string.
pub delta: String,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub struct ResponseFunctionCallArgumentsDone {
/// The unique ID of the server event.
pub event_id: String,
/// The event type, must be "response.function_call_arguments.done".
pub r#type: String,
/// The ID of the response.
pub response_id: String,
/// The ID of the function call item.
pub item_id: String,
/// The index of the output item in the response.
pub output_index: u32,
/// The ID of the function call.
pub call_id: String,
/// The final arguments as a JSON string.
pub arguments: String,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub struct RateLimitsUpdated {
/// The unique ID of the server event.
pub event_id: String,
/// The event type, must be "rate_limits.updated".
pub r#type: String,
/// List of rate limit information.
pub rate_limits: Vec<RateLimit>,
}