public sealed class GenerateContentRequest : IMessage<GenerateContentRequest>, IEquatable<GenerateContentRequest>, IDeepCloneable<GenerateContentRequest>, IBufferMessage, IMessage
Reference documentation and code samples for the Cloud AI Platform v1beta1 API class GenerateContentRequest.
Request message for [PredictionService.GenerateContent].
Implements
IMessageGenerateContentRequest, IEquatableGenerateContentRequest, IDeepCloneableGenerateContentRequest, IBufferMessage, IMessageNamespace
Google.Cloud.AIPlatform.V1Beta1Assembly
Google.Cloud.AIPlatform.V1Beta1.dll
Constructors
GenerateContentRequest()
public GenerateContentRequest()
GenerateContentRequest(GenerateContentRequest)
public GenerateContentRequest(GenerateContentRequest other)
Parameter | |
---|---|
Name | Description |
other |
GenerateContentRequest |
Properties
CachedContent
public string CachedContent { get; set; }
Optional. The name of the cached content used as context to serve the
prediction. Note: only used in explicit caching, where users can have
control over caching (e.g. what content to cache) and enjoy guaranteed cost
savings. Format:
projects/{project}/locations/{location}/cachedContents/{cachedContent}
Property Value | |
---|---|
Type | Description |
string |
CachedContentAsCachedContentName
public CachedContentName CachedContentAsCachedContentName { get; set; }
CachedContentName-typed view over the CachedContent resource name property.
Property Value | |
---|---|
Type | Description |
CachedContentName |
Contents
public RepeatedField<Content> Contents { get; }
Required. The content of the current conversation with the model.
For single-turn queries, this is a single instance. For multi-turn queries, this is a repeated field that contains conversation history + latest request.
Property Value | |
---|---|
Type | Description |
RepeatedFieldContent |
GenerationConfig
public GenerationConfig GenerationConfig { get; set; }
Optional. Generation config.
Property Value | |
---|---|
Type | Description |
GenerationConfig |
Model
public string Model { get; set; }
Required. The name of the publisher model requested to serve the
prediction. Format:
projects/{project}/locations/{location}/publishers/*/models/*
Property Value | |
---|---|
Type | Description |
string |
SafetySettings
public RepeatedField<SafetySetting> SafetySettings { get; }
Optional. Per request settings for blocking unsafe content. Enforced on GenerateContentResponse.candidates.
Property Value | |
---|---|
Type | Description |
RepeatedFieldSafetySetting |
SystemInstruction
public Content SystemInstruction { get; set; }
Optional. The user provided system instructions for the model. Note: only text should be used in parts and content in each part will be in a separate paragraph.
Property Value | |
---|---|
Type | Description |
Content |
ToolConfig
public ToolConfig ToolConfig { get; set; }
Optional. Tool config. This config is shared for all tools provided in the request.
Property Value | |
---|---|
Type | Description |
ToolConfig |
Tools
public RepeatedField<Tool> Tools { get; }
Optional. A list of Tools
the model may use to generate the next
response.
A Tool
is a piece of code that enables the system to interact with
external systems to perform an action, or set of actions, outside of
knowledge and scope of the model.
Property Value | |
---|---|
Type | Description |
RepeatedFieldTool |