pub struct ChatCompletionCreateParamsNonStreaming {
pub stream: Option<bool>,
}Fields§
§stream: Option<bool>If set, partial message deltas will be sent, like in ChatGPT. Tokens will be
sent as data-only
server-sent events
as they become available, with the stream terminated by a data: [DONE]
message.
Example Python code.
Trait Implementations§
Source§impl Clone for ChatCompletionCreateParamsNonStreaming
impl Clone for ChatCompletionCreateParamsNonStreaming
Source§fn clone(&self) -> ChatCompletionCreateParamsNonStreaming
fn clone(&self) -> ChatCompletionCreateParamsNonStreaming
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for ChatCompletionCreateParamsNonStreaming
impl Default for ChatCompletionCreateParamsNonStreaming
Source§fn default() -> ChatCompletionCreateParamsNonStreaming
fn default() -> ChatCompletionCreateParamsNonStreaming
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ChatCompletionCreateParamsNonStreaming
impl<'de> Deserialize<'de> for ChatCompletionCreateParamsNonStreaming
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
Auto Trait Implementations§
impl Freeze for ChatCompletionCreateParamsNonStreaming
impl RefUnwindSafe for ChatCompletionCreateParamsNonStreaming
impl Send for ChatCompletionCreateParamsNonStreaming
impl Sync for ChatCompletionCreateParamsNonStreaming
impl Unpin for ChatCompletionCreateParamsNonStreaming
impl UnwindSafe for ChatCompletionCreateParamsNonStreaming
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