-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathtryAGI.OpenAI.UsageClient.UsageAudioTranscriptions.g.cs
More file actions
228 lines (213 loc) · 10.4 KB
/
tryAGI.OpenAI.UsageClient.UsageAudioTranscriptions.g.cs
File metadata and controls
228 lines (213 loc) · 10.4 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
#nullable enable
namespace tryAGI.OpenAI
{
public partial class UsageClient
{
partial void PrepareUsageAudioTranscriptionsArguments(
global::System.Net.Http.HttpClient httpClient,
ref int startTime,
ref int? endTime,
ref global::tryAGI.OpenAI.UsageAudioTranscriptionsBucketWidth? bucketWidth,
global::System.Collections.Generic.IList<string>? projectIds,
global::System.Collections.Generic.IList<string>? userIds,
global::System.Collections.Generic.IList<string>? apiKeyIds,
global::System.Collections.Generic.IList<string>? models,
global::System.Collections.Generic.IList<global::tryAGI.OpenAI.UsageAudioTranscriptionsGroupByItem>? groupBy,
ref int? limit,
ref string? page);
partial void PrepareUsageAudioTranscriptionsRequest(
global::System.Net.Http.HttpClient httpClient,
global::System.Net.Http.HttpRequestMessage httpRequestMessage,
int startTime,
int? endTime,
global::tryAGI.OpenAI.UsageAudioTranscriptionsBucketWidth? bucketWidth,
global::System.Collections.Generic.IList<string>? projectIds,
global::System.Collections.Generic.IList<string>? userIds,
global::System.Collections.Generic.IList<string>? apiKeyIds,
global::System.Collections.Generic.IList<string>? models,
global::System.Collections.Generic.IList<global::tryAGI.OpenAI.UsageAudioTranscriptionsGroupByItem>? groupBy,
int? limit,
string? page);
partial void ProcessUsageAudioTranscriptionsResponse(
global::System.Net.Http.HttpClient httpClient,
global::System.Net.Http.HttpResponseMessage httpResponseMessage);
partial void ProcessUsageAudioTranscriptionsResponseContent(
global::System.Net.Http.HttpClient httpClient,
global::System.Net.Http.HttpResponseMessage httpResponseMessage,
ref string content);
/// <summary>
/// Get audio transcriptions usage details for the organization.
/// </summary>
/// <param name="startTime"></param>
/// <param name="endTime"></param>
/// <param name="bucketWidth">
/// Default Value: 1d
/// </param>
/// <param name="projectIds"></param>
/// <param name="userIds"></param>
/// <param name="apiKeyIds"></param>
/// <param name="models"></param>
/// <param name="groupBy"></param>
/// <param name="limit"></param>
/// <param name="page"></param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::tryAGI.OpenAI.ApiException"></exception>
public async global::System.Threading.Tasks.Task<global::tryAGI.OpenAI.UsageResponse> UsageAudioTranscriptionsAsync(
int startTime,
int? endTime = default,
global::tryAGI.OpenAI.UsageAudioTranscriptionsBucketWidth? bucketWidth = default,
global::System.Collections.Generic.IList<string>? projectIds = default,
global::System.Collections.Generic.IList<string>? userIds = default,
global::System.Collections.Generic.IList<string>? apiKeyIds = default,
global::System.Collections.Generic.IList<string>? models = default,
global::System.Collections.Generic.IList<global::tryAGI.OpenAI.UsageAudioTranscriptionsGroupByItem>? groupBy = default,
int? limit = default,
string? page = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
PrepareArguments(
client: HttpClient);
PrepareUsageAudioTranscriptionsArguments(
httpClient: HttpClient,
startTime: ref startTime,
endTime: ref endTime,
bucketWidth: ref bucketWidth,
projectIds: projectIds,
userIds: userIds,
apiKeyIds: apiKeyIds,
models: models,
groupBy: groupBy,
limit: ref limit,
page: ref page);
var __pathBuilder = new global::tryAGI.OpenAI.PathBuilder(
path: "/organization/usage/audio_transcriptions",
baseUri: HttpClient.BaseAddress);
__pathBuilder
.AddRequiredParameter("start_time", startTime.ToString())
.AddOptionalParameter("end_time", endTime?.ToString())
.AddOptionalParameter("bucket_width", bucketWidth?.ToValueString())
.AddOptionalParameter("project_ids", projectIds, delimiter: ",", explode: true)
.AddOptionalParameter("user_ids", userIds, delimiter: ",", explode: true)
.AddOptionalParameter("api_key_ids", apiKeyIds, delimiter: ",", explode: true)
.AddOptionalParameter("models", models, delimiter: ",", explode: true)
.AddOptionalParameter("group_by", groupBy, selector: static x => x.ToValueString(), delimiter: ",", explode: true)
.AddOptionalParameter("limit", limit?.ToString())
.AddOptionalParameter("page", page)
;
var __path = __pathBuilder.ToString();
using var __httpRequest = new global::System.Net.Http.HttpRequestMessage(
method: global::System.Net.Http.HttpMethod.Get,
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
foreach (var __authorization in Authorizations)
{
if (__authorization.Type == "Http" ||
__authorization.Type == "OAuth2")
{
__httpRequest.Headers.Authorization = new global::System.Net.Http.Headers.AuthenticationHeaderValue(
scheme: __authorization.Name,
parameter: __authorization.Value);
}
else if (__authorization.Type == "ApiKey" &&
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
}
}
PrepareRequest(
client: HttpClient,
request: __httpRequest);
PrepareUsageAudioTranscriptionsRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
startTime: startTime,
endTime: endTime,
bucketWidth: bucketWidth,
projectIds: projectIds,
userIds: userIds,
apiKeyIds: apiKeyIds,
models: models,
groupBy: groupBy,
limit: limit,
page: page);
using var __response = await HttpClient.SendAsync(
request: __httpRequest,
completionOption: global::System.Net.Http.HttpCompletionOption.ResponseContentRead,
cancellationToken: cancellationToken).ConfigureAwait(false);
ProcessResponse(
client: HttpClient,
response: __response);
ProcessUsageAudioTranscriptionsResponse(
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);
ProcessUsageAudioTranscriptionsResponseContent(
httpClient: HttpClient,
httpResponseMessage: __response,
content: ref __content);
try
{
__response.EnsureSuccessStatusCode();
}
catch (global::System.Net.Http.HttpRequestException __ex)
{
throw new global::tryAGI.OpenAI.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),
};
}
return
global::tryAGI.OpenAI.UsageResponse.FromJson(__content, JsonSerializerContext) ??
throw new global::System.InvalidOperationException($"Response deserialization failed for \"{__content}\" ");
}
else
{
try
{
__response.EnsureSuccessStatusCode();
}
catch (global::System.Net.Http.HttpRequestException __ex)
{
throw new global::tryAGI.OpenAI.ApiException(
message: __response.ReasonPhrase ?? string.Empty,
innerException: __ex,
statusCode: __response.StatusCode)
{
ResponseHeaders = global::System.Linq.Enumerable.ToDictionary(
__response.Headers,
h => h.Key,
h => h.Value),
};
}
using var __content = await __response.Content.ReadAsStreamAsync(
#if NET5_0_OR_GREATER
cancellationToken
#endif
).ConfigureAwait(false);
return
await global::tryAGI.OpenAI.UsageResponse.FromJsonStreamAsync(__content, JsonSerializerContext).ConfigureAwait(false) ??
throw new global::System.InvalidOperationException("Response deserialization failed.");
}
}
}
}