Cloud AI Platform v1 API - Class GenerateContentRequest (2.27.0)

public sealed class GenerateContentRequest : IMessage<GenerateContentRequest>, IEquatable<GenerateContentRequest>, IDeepCloneable<GenerateContentRequest>, IBufferMessage, IMessage

Reference documentation and code samples for the Cloud AI Platform v1 API class GenerateContentRequest.

Request message for [PredictionService.GenerateContent].

Inheritance

object > GenerateContentRequest

Namespace

Google.Cloud.AIPlatform.V1

Assembly

Google.Cloud.AIPlatform.V1.dll

Constructors

GenerateContentRequest()

public GenerateContentRequest()

GenerateContentRequest(GenerateContentRequest)

public GenerateContentRequest(GenerateContentRequest other)
Parameter
NameDescription
otherGenerateContentRequest

Properties

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
TypeDescription
RepeatedFieldContent

GenerationConfig

public GenerationConfig GenerationConfig { get; set; }

Optional. Generation config.

Property Value
TypeDescription
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
TypeDescription
string

SafetySettings

public RepeatedField<SafetySetting> SafetySettings { get; }

Optional. Per request settings for blocking unsafe content. Enforced on GenerateContentResponse.candidates.

Property Value
TypeDescription
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
TypeDescription
Content

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
TypeDescription
RepeatedFieldTool