pub struct SideQueryOptions {
pub base_url: String,
pub api_key: String,
pub model: String,
pub system_prompt: String,
pub message: String,
pub max_tokens: Option<u32>,
pub tools: Option<Vec<Value>>,
}Expand description
Configuration for a side query request.
Fields§
§base_url: String§api_key: String§model: String§system_prompt: String§message: String§max_tokens: Option<u32>§tools: Option<Vec<Value>>Implementations§
Auto Trait Implementations§
impl Freeze for SideQueryOptions
impl RefUnwindSafe for SideQueryOptions
impl Send for SideQueryOptions
impl Sync for SideQueryOptions
impl Unpin for SideQueryOptions
impl UnsafeUnpin for SideQueryOptions
impl UnwindSafe for SideQueryOptions
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