-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGoogle.Gemini.GeminiClient.DynamicStreamGenerateContent.g.cs
More file actions
251 lines (232 loc) · 13.3 KB
/
Google.Gemini.GeminiClient.DynamicStreamGenerateContent.g.cs
File metadata and controls
251 lines (232 loc) · 13.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
#nullable enable
namespace Google.Gemini
{
public partial class GeminiClient
{
partial void PrepareDynamicStreamGenerateContentArguments(
global::System.Net.Http.HttpClient httpClient,
ref string dynamicId,
global::Google.Gemini.GenerateContentRequest request);
partial void PrepareDynamicStreamGenerateContentRequest(
global::System.Net.Http.HttpClient httpClient,
global::System.Net.Http.HttpRequestMessage httpRequestMessage,
string dynamicId,
global::Google.Gemini.GenerateContentRequest request);
partial void ProcessDynamicStreamGenerateContentResponse(
global::System.Net.Http.HttpClient httpClient,
global::System.Net.Http.HttpResponseMessage httpResponseMessage);
partial void ProcessDynamicStreamGenerateContentResponseContent(
global::System.Net.Http.HttpClient httpClient,
global::System.Net.Http.HttpResponseMessage httpResponseMessage,
ref string content);
/// <summary>
/// Generates a [streamed response](https://ai.google.dev/gemini-api/docs/text-generation?lang=python#generate-a-text-stream) from the model given an input `GenerateContentRequest`.
/// </summary>
/// <param name="dynamicId"></param>
/// <param name="request"></param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::Google.Gemini.ApiException"></exception>
public async global::System.Threading.Tasks.Task<global::Google.Gemini.GenerateContentResponse> DynamicStreamGenerateContentAsync(
string dynamicId,
global::Google.Gemini.GenerateContentRequest request,
global::System.Threading.CancellationToken cancellationToken = default)
{
request = request ?? throw new global::System.ArgumentNullException(nameof(request));
PrepareArguments(
client: HttpClient);
PrepareDynamicStreamGenerateContentArguments(
httpClient: HttpClient,
dynamicId: ref dynamicId,
request: request);
var __pathBuilder = new global::Google.Gemini.PathBuilder(
path: $"/dynamic/{dynamicId}:streamGenerateContent",
baseUri: HttpClient.BaseAddress);
foreach (var __authorization in Authorizations)
{
if (__authorization.Type == "ApiKey" &&
__authorization.Location == "Query")
{
__pathBuilder = __pathBuilder.AddRequiredParameter(__authorization.Name, __authorization.Value);
}
}
var __path = __pathBuilder.ToString();
using var __httpRequest = new global::System.Net.Http.HttpRequestMessage(
method: global::System.Net.Http.HttpMethod.Post,
requestUri: new global::System.Uri(__path, global::System.UriKind.RelativeOrAbsolute));
#if NET6_0_OR_GREATER
__httpRequest.Version = global::System.Net.HttpVersion.Version11;
__httpRequest.VersionPolicy = global::System.Net.Http.HttpVersionPolicy.RequestVersionOrHigher;
#endif
var __httpRequestContentBody = request.ToJson(JsonSerializerContext);
var __httpRequestContent = new global::System.Net.Http.StringContent(
content: __httpRequestContentBody,
encoding: global::System.Text.Encoding.UTF8,
mediaType: "application/json");
__httpRequest.Content = __httpRequestContent;
PrepareRequest(
client: HttpClient,
request: __httpRequest);
PrepareDynamicStreamGenerateContentRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
dynamicId: dynamicId,
request: request);
using var __response = await HttpClient.SendAsync(
request: __httpRequest,
completionOption: global::System.Net.Http.HttpCompletionOption.ResponseContentRead,
cancellationToken: cancellationToken).ConfigureAwait(false);
ProcessResponse(
client: HttpClient,
response: __response);
ProcessDynamicStreamGenerateContentResponse(
httpClient: HttpClient,
httpResponseMessage: __response);
if (ReadResponseAsString)
{
var __content = await __response.Content.ReadAsStringAsync(
#if NET5_0_OR_GREATER
cancellationToken
#endif
).ConfigureAwait(false);
ProcessResponseContent(
client: HttpClient,
response: __response,
content: ref __content);
ProcessDynamicStreamGenerateContentResponseContent(
httpClient: HttpClient,
httpResponseMessage: __response,
content: ref __content);
try
{
__response.EnsureSuccessStatusCode();
return
global::Google.Gemini.GenerateContentResponse.FromJson(__content, JsonSerializerContext) ??
throw new global::System.InvalidOperationException($"Response deserialization failed for \"{__content}\" ");
}
catch (global::System.Exception __ex)
{
throw new global::Google.Gemini.ApiException(
message: __content ?? __response.ReasonPhrase ?? string.Empty,
innerException: __ex,
statusCode: __response.StatusCode)
{
ResponseBody = __content,
ResponseHeaders = global::System.Linq.Enumerable.ToDictionary(
__response.Headers,
h => h.Key,
h => h.Value),
};
}
}
else
{
try
{
__response.EnsureSuccessStatusCode();
using var __content = await __response.Content.ReadAsStreamAsync(
#if NET5_0_OR_GREATER
cancellationToken
#endif
).ConfigureAwait(false);
return
await global::Google.Gemini.GenerateContentResponse.FromJsonStreamAsync(__content, JsonSerializerContext).ConfigureAwait(false) ??
throw new global::System.InvalidOperationException("Response deserialization failed.");
}
catch (global::System.Exception __ex)
{
string? __content = null;
try
{
__content = await __response.Content.ReadAsStringAsync(
#if NET5_0_OR_GREATER
cancellationToken
#endif
).ConfigureAwait(false);
}
catch (global::System.Exception)
{
}
throw new global::Google.Gemini.ApiException(
message: __content ?? __response.ReasonPhrase ?? string.Empty,
innerException: __ex,
statusCode: __response.StatusCode)
{
ResponseBody = __content,
ResponseHeaders = global::System.Linq.Enumerable.ToDictionary(
__response.Headers,
h => h.Key,
h => h.Value),
};
}
}
}
/// <summary>
/// Generates a [streamed response](https://ai.google.dev/gemini-api/docs/text-generation?lang=python#generate-a-text-stream) from the model given an input `GenerateContentRequest`.
/// </summary>
/// <param name="dynamicId"></param>
/// <param name="model">
/// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`.
/// </param>
/// <param name="systemInstruction">
/// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn.
/// </param>
/// <param name="contents">
/// Required. The content of the current conversation with the model. For single-turn queries, this is a single instance. For multi-turn queries like [chat](https://ai.google.dev/gemini-api/docs/text-generation#chat), this is a repeated field that contains the conversation history and the latest request.
/// </param>
/// <param name="tools">
/// 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`. Supported `Tool`s are `Function` and `code_execution`. Refer to the [Function calling](https://ai.google.dev/gemini-api/docs/function-calling) and the [Code execution](https://ai.google.dev/gemini-api/docs/code-execution) guides to learn more.
/// </param>
/// <param name="toolConfig">
/// The Tool configuration containing parameters for specifying `Tool` use in the request.
/// </param>
/// <param name="safetySettings">
/// Optional. A list of unique `SafetySetting` instances for blocking unsafe content. This will be enforced on the `GenerateContentRequest.contents` and `GenerateContentResponse.candidates`. There should not be more than one setting for each `SafetyCategory` type. The API will block any contents and responses that fail to meet the thresholds set by these settings. This list overrides the default settings for each `SafetyCategory` specified in the safety_settings. If there is no `SafetySetting` for a given `SafetyCategory` provided in the list, the API will use the default safety setting for that category. Harm categories HARM_CATEGORY_HATE_SPEECH, HARM_CATEGORY_SEXUALLY_EXPLICIT, HARM_CATEGORY_DANGEROUS_CONTENT, HARM_CATEGORY_HARASSMENT, HARM_CATEGORY_CIVIC_INTEGRITY are supported. Refer to the [guide](https://ai.google.dev/gemini-api/docs/safety-settings) for detailed information on available safety settings. Also refer to the [Safety guidance](https://ai.google.dev/gemini-api/docs/safety-guidance) to learn how to incorporate safety considerations in your AI applications.
/// </param>
/// <param name="generationConfig">
/// Configuration options for model generation and outputs. Not all parameters are configurable for every model.
/// </param>
/// <param name="cachedContent">
/// Optional. The name of the content [cached](https://ai.google.dev/gemini-api/docs/caching) to use as context to serve the prediction. Format: `cachedContents/{cachedContent}`
/// </param>
/// <param name="serviceTier">
/// Optional. The service tier of the request.
/// </param>
/// <param name="store">
/// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config.
/// </param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::System.InvalidOperationException"></exception>
public async global::System.Threading.Tasks.Task<global::Google.Gemini.GenerateContentResponse> DynamicStreamGenerateContentAsync(
string dynamicId,
string? model = default,
global::Google.Gemini.Content? systemInstruction = default,
global::System.Collections.Generic.IList<global::Google.Gemini.Content>? contents = default,
global::System.Collections.Generic.IList<global::Google.Gemini.Tool>? tools = default,
global::Google.Gemini.ToolConfig? toolConfig = default,
global::System.Collections.Generic.IList<global::Google.Gemini.SafetySetting>? safetySettings = default,
global::Google.Gemini.GenerationConfig? generationConfig = default,
string? cachedContent = default,
global::Google.Gemini.GenerateContentRequestServiceTier? serviceTier = default,
bool? store = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
var __request = new global::Google.Gemini.GenerateContentRequest
{
Model = model,
SystemInstruction = systemInstruction,
Contents = contents,
Tools = tools,
ToolConfig = toolConfig,
SafetySettings = safetySettings,
GenerationConfig = generationConfig,
CachedContent = cachedContent,
ServiceTier = serviceTier,
Store = store,
};
return await DynamicStreamGenerateContentAsync(
dynamicId: dynamicId,
request: __request,
cancellationToken: cancellationToken).ConfigureAwait(false);
}
}
}