pub struct Message {
pub content: String,
pub role: String,
pub reasoning_content: Option<String>,
pub function_call: Option<Value>,
pub tool_calls: Option<Vec<ToolCall>>,
}
Fields§
§content: String
输出消息的内容。当使用qwen-vl或qwen-audio系列模型时为array,其余情况为string。
role: String
输出消息的角色,固定为assistant。
reasoning_content: Option<String>
§function_call: Option<Value>
§tool_calls: Option<Vec<ToolCall>>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Message
impl<'de> Deserialize<'de> for Message
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 Message
impl RefUnwindSafe for Message
impl Send for Message
impl Sync for Message
impl Unpin for Message
impl UnwindSafe for Message
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