pub struct ResponseContentPartDoneEvent {
pub content_index: i64,
pub item_id: String,
pub output_index: i64,
pub part: OutputContent,
pub sequence_number: i64,
pub type_: ResponseContentPartDoneEventType,
}Expand description
Emitted when a content part is done.
JSON schema
{
"description": "Emitted when a content part is done.",
"type": "object",
"required": [
"content_index",
"item_id",
"output_index",
"part",
"sequence_number",
"type"
],
"properties": {
"content_index": {
"description": "The index of the content part that is done.\n",
"type": "integer"
},
"item_id": {
"description": "The ID of the output item that the content part was added to.\n",
"type": "string"
},
"output_index": {
"description": "The index of the output item that the content part was added to.\n",
"type": "integer"
},
"part": {
"$ref": "#/components/schemas/OutputContent"
},
"sequence_number": {
"description": "The sequence number of this event.",
"type": "integer"
},
"type": {
"description": "The type of the event. Always `response.content_part.done`.\n",
"type": "string",
"enum": [
"response.content_part.done"
],
"x-stainless-const": true
}
},
"x-oaiMeta": {
"group": "responses",
"name": "response.content_part.done"
}
}Fields§
§content_index: i64The index of the content part that is done.
item_id: StringThe ID of the output item that the content part was added to.
output_index: i64The index of the output item that the content part was added to.
part: OutputContent§sequence_number: i64The sequence number of this event.
type_: ResponseContentPartDoneEventTypeThe type of the event. Always response.content_part.done.
Trait Implementations§
Source§impl Clone for ResponseContentPartDoneEvent
impl Clone for ResponseContentPartDoneEvent
Source§fn clone(&self) -> ResponseContentPartDoneEvent
fn clone(&self) -> ResponseContentPartDoneEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ResponseContentPartDoneEvent
impl Debug for ResponseContentPartDoneEvent
Source§impl<'de> Deserialize<'de> for ResponseContentPartDoneEvent
impl<'de> Deserialize<'de> for ResponseContentPartDoneEvent
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<ResponseContentPartDoneEvent> for ResponseStreamEvent
impl From<ResponseContentPartDoneEvent> for ResponseStreamEvent
Source§fn from(value: ResponseContentPartDoneEvent) -> Self
fn from(value: ResponseContentPartDoneEvent) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ResponseContentPartDoneEvent
impl RefUnwindSafe for ResponseContentPartDoneEvent
impl Send for ResponseContentPartDoneEvent
impl Sync for ResponseContentPartDoneEvent
impl Unpin for ResponseContentPartDoneEvent
impl UnsafeUnpin for ResponseContentPartDoneEvent
impl UnwindSafe for ResponseContentPartDoneEvent
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more