pub struct CreateResponse_Variant3 {
pub input: CreateResponse_Variant3_Input,
pub include: Option<Vec<Includable>>,
pub parallel_tool_calls: Option<bool>,
pub store: Option<bool>,
pub stream: Option<bool>,
}
Fields§
§input: CreateResponse_Variant3_Input
§include: Option<Vec<Includable>>
Specify additional output data to include in the model response.
parallel_tool_calls: Option<bool>
Whether to allow the model to run tool calls in parallel.
store: Option<bool>
Whether to store the generated model response for later retrieval via API.
stream: Option<bool>
If set to true, the model response data will be streamed to the client as it is generated using server-sent events.
Trait Implementations§
Source§impl Clone for CreateResponse_Variant3
impl Clone for CreateResponse_Variant3
Source§fn clone(&self) -> CreateResponse_Variant3
fn clone(&self) -> CreateResponse_Variant3
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 moreAuto Trait Implementations§
impl Freeze for CreateResponse_Variant3
impl RefUnwindSafe for CreateResponse_Variant3
impl Send for CreateResponse_Variant3
impl Sync for CreateResponse_Variant3
impl Unpin for CreateResponse_Variant3
impl UnwindSafe for CreateResponse_Variant3
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