pub struct GenerateContentConfig {
pub system_instruction: Option<Content>,
pub generation_config: Option<GenerationConfig>,
pub safety_settings: Option<Vec<SafetySetting>>,
pub model_armor_config: Option<ModelArmorConfig>,
pub tools: Option<Vec<Tool>>,
pub tool_config: Option<ToolConfig>,
pub automatic_function_calling: Option<AutomaticFunctionCallingConfig>,
pub cached_content: Option<String>,
pub labels: Option<HashMap<String, String>>,
pub should_return_http_response: Option<bool>,
}Expand description
GenerateContent 请求配置。
Fields§
§system_instruction: Option<Content>§generation_config: Option<GenerationConfig>§safety_settings: Option<Vec<SafetySetting>>§model_armor_config: Option<ModelArmorConfig>Settings for prompt and response sanitization using the Model Armor service.
If supplied, safety_settings must not be supplied.
tools: Option<Vec<Tool>>§tool_config: Option<ToolConfig>§automatic_function_calling: Option<AutomaticFunctionCallingConfig>自动函数调用(SDK 内部行为,不会发送到后端)。
cached_content: Option<String>§labels: Option<HashMap<String, String>>§should_return_http_response: Option<bool>Optional. If true, returns the raw HTTP response body in sdk_http_response.body (SDK only).
Note: Not supported in streaming methods.
Trait Implementations§
Source§impl Clone for GenerateContentConfig
impl Clone for GenerateContentConfig
Source§fn clone(&self) -> GenerateContentConfig
fn clone(&self) -> GenerateContentConfig
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 Debug for GenerateContentConfig
impl Debug for GenerateContentConfig
Source§impl Default for GenerateContentConfig
impl Default for GenerateContentConfig
Source§fn default() -> GenerateContentConfig
fn default() -> GenerateContentConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GenerateContentConfig
impl<'de> Deserialize<'de> for GenerateContentConfig
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 GenerateContentConfig
impl RefUnwindSafe for GenerateContentConfig
impl Send for GenerateContentConfig
impl Sync for GenerateContentConfig
impl Unpin for GenerateContentConfig
impl UnsafeUnpin for GenerateContentConfig
impl UnwindSafe for GenerateContentConfig
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