pub struct ChatCompletionToolMessageParam {
pub content: String,
pub role: String,
pub tool_call_id: String,
}Fields§
§content: StringThe contents of the tool message.
role: StringThe role of the messages author, in this case tool.
tool_call_id: StringTool call that this message is responding to.
Auto Trait Implementations§
impl Freeze for ChatCompletionToolMessageParam
impl RefUnwindSafe for ChatCompletionToolMessageParam
impl Send for ChatCompletionToolMessageParam
impl Sync for ChatCompletionToolMessageParam
impl Unpin for ChatCompletionToolMessageParam
impl UnwindSafe for ChatCompletionToolMessageParam
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