You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -97,7 +97,7 @@ final public class DefaultOpenAIAzureService: OpenAIService {
97
97
fatalError("Currently, this API is not supported. We welcome and encourage contributions to our open-source project. Please consider opening an issue or submitting a pull request to add support for this feature.")
fatalError("Currently, this API is not supported. We welcome and encourage contributions to our open-source project. Please consider opening an issue or submitting a pull request to add support for this feature.")
102
102
}
103
103
@@ -129,7 +129,7 @@ final public class DefaultOpenAIAzureService: OpenAIService {
129
129
fatalError("Currently, this API is not supported. We welcome and encourage contributions to our open-source project. Please consider opening an issue or submitting a pull request to add support for this feature.")
fatalError("Currently, this API is not supported. We welcome and encourage contributions to our open-source project. Please consider opening an issue or submitting a pull request to add support for this feature.")
134
134
}
135
135
@@ -153,30 +153,14 @@ final public class DefaultOpenAIAzureService: OpenAIService {
153
153
fatalError("Currently, this API is not supported. We welcome and encourage contributions to our open-source project. Please consider opening an issue or submitting a pull request to add support for this feature.")
fatalError("Currently, this API is not supported. We welcome and encourage contributions to our open-source project. Please consider opening an issue or submitting a pull request to add support for this feature.")
fatalError("Currently, this API is not supported. We welcome and encourage contributions to our open-source project. Please consider opening an issue or submitting a pull request to add support for this feature.")
fatalError("Currently, this API is not supported. We welcome and encourage contributions to our open-source project. Please consider opening an issue or submitting a pull request to add support for this feature.")
fatalError("Currently, this API is not supported. We welcome and encourage contributions to our open-source project. Please consider opening an issue or submitting a pull request to add support for this feature.")
fatalError("Currently, this API is not supported. We welcome and encourage contributions to our open-source project. Please consider opening an issue or submitting a pull request to add support for this feature.")
fatalError("Currently, this API is not supported. We welcome and encourage contributions to our open-source project. Please consider opening an issue or submitting a pull request to add support for this feature.")
fatalError("Currently, this API is not supported. We welcome and encourage contributions to our open-source project. Please consider opening an issue or submitting a pull request to add support for this feature.")
182
166
}
@@ -189,7 +173,7 @@ final public class DefaultOpenAIAzureService: OpenAIService {
189
173
fatalError("Currently, this API is not supported. We welcome and encourage contributions to our open-source project. Please consider opening an issue or submitting a pull request to add support for this feature.")
fatalError("Currently, this API is not supported. We welcome and encourage contributions to our open-source project. Please consider opening an issue or submitting a pull request to add support for this feature.")
194
178
}
195
179
@@ -209,14 +193,6 @@ final public class DefaultOpenAIAzureService: OpenAIService {
209
193
fatalError("Currently, this API is not supported. We welcome and encourage contributions to our open-source project. Please consider opening an issue or submitting a pull request to add support for this feature.")
fatalError("Currently, this API is not supported. We welcome and encourage contributions to our open-source project. Please consider opening an issue or submitting a pull request to add support for this feature.")
fatalError("Currently, this API is not supported. We welcome and encourage contributions to our open-source project. Please consider opening an issue or submitting a pull request to add support for this feature.")
fatalError("Currently, this API is not supported. We welcome and encourage contributions to our open-source project. Please consider opening an issue or submitting a pull request to add support for this feature.")
222
198
}
@@ -255,7 +231,7 @@ final public class DefaultOpenAIAzureService: OpenAIService {
fatalError("Currently, this API is not supported. We welcome and encourage contributions to our open-source project. Please consider opening an issue or submitting a pull request to add support for this feature.")
260
236
}
261
237
@@ -271,7 +247,111 @@ final public class DefaultOpenAIAzureService: OpenAIService {
fatalError("Currently, this API is not supported. We welcome and encourage contributions to our open-source project. Please consider opening an issue or submitting a pull request to add support for this feature.")
252
+
}
253
+
254
+
// MARK: Batch
255
+
256
+
publicfunc createBatch(
257
+
parameters:BatchParameter)
258
+
asyncthrows->BatchObject
259
+
{
260
+
fatalError("Currently, this API is not supported. We welcome and encourage contributions to our open-source project. Please consider opening an issue or submitting a pull request to add support for this feature.")
261
+
}
262
+
263
+
publicfunc retrieveBatch(
264
+
id:String)
265
+
asyncthrows->BatchObject
266
+
{
267
+
fatalError("Currently, this API is not supported. We welcome and encourage contributions to our open-source project. Please consider opening an issue or submitting a pull request to add support for this feature.")
268
+
}
269
+
270
+
publicfunc cancelBatch(
271
+
id:String)asyncthrows->BatchObject
272
+
{
273
+
fatalError("Currently, this API is not supported. We welcome and encourage contributions to our open-source project. Please consider opening an issue or submitting a pull request to add support for this feature.")
274
+
}
275
+
276
+
publicfunc listBatch(
277
+
after:String?,
278
+
limit:Int?)
279
+
asyncthrows->OpenAIResponse<BatchObject>
280
+
{
281
+
fatalError("Currently, this API is not supported. We welcome and encourage contributions to our open-source project. Please consider opening an issue or submitting a pull request to add support for this feature.")
282
+
}
283
+
284
+
// MARK: Vector Store
285
+
286
+
publicfunc createVectorStore(
287
+
parameters:VectorStoreParameter)
288
+
asyncthrows->VectorStoreObject
289
+
{
290
+
fatalError("Currently, this API is not supported. We welcome and encourage contributions to our open-source project. Please consider opening an issue or submitting a pull request to add support for this feature.")
291
+
}
292
+
293
+
publicfunc listVectorStores(
294
+
limit:Int?,
295
+
order:String?,
296
+
after:String?,
297
+
before:String?)
298
+
asyncthrows->OpenAIResponse<VectorStoreObject>
299
+
{
300
+
fatalError("Currently, this API is not supported. We welcome and encourage contributions to our open-source project. Please consider opening an issue or submitting a pull request to add support for this feature.")
301
+
}
302
+
303
+
publicfunc retrieveVectorStore(
304
+
id:String)asyncthrows
305
+
->VectorStoreObject
306
+
{
307
+
fatalError("Currently, this API is not supported. We welcome and encourage contributions to our open-source project. Please consider opening an issue or submitting a pull request to add support for this feature.")
308
+
}
309
+
310
+
publicfunc modifyVectorStore(
311
+
id:String)
312
+
asyncthrows->VectorStoreObject
313
+
{
314
+
fatalError("Currently, this API is not supported. We welcome and encourage contributions to our open-source project. Please consider opening an issue or submitting a pull request to add support for this feature.")
315
+
}
316
+
317
+
publicfunc deleteVectorStore(
318
+
id:String)
319
+
asyncthrows->DeletionStatus
320
+
{
321
+
fatalError("Currently, this API is not supported. We welcome and encourage contributions to our open-source project. Please consider opening an issue or submitting a pull request to add support for this feature.")
fatalError("Currently, this API is not supported. We welcome and encourage contributions to our open-source project. Please consider opening an issue or submitting a pull request to add support for this feature.")
fatalError("Currently, this API is not supported. We welcome and encourage contributions to our open-source project. Please consider opening an issue or submitting a pull request to add support for this feature.")
fatalError("Currently, this API is not supported. We welcome and encourage contributions to our open-source project. Please consider opening an issue or submitting a pull request to add support for this feature.")
fatalError("Currently, this API is not supported. We welcome and encourage contributions to our open-source project. Please consider opening an issue or submitting a pull request to add support for this feature.")
fatalError("Currently, this API is not supported. We welcome and encourage contributions to our open-source project. Please consider opening an issue or submitting a pull request to add support for this feature.")
fatalError("Currently, this API is not supported. We welcome and encourage contributions to our open-source project. Please consider opening an issue or submitting a pull request to add support for this feature.")
fatalError("Currently, this API is not supported. We welcome and encourage contributions to our open-source project. Please consider opening an issue or submitting a pull request to add support for this feature.")
fatalError("Currently, this API is not supported. We welcome and encourage contributions to our open-source project. Please consider opening an issue or submitting a pull request to add support for this feature.")
0 commit comments