@bodhiapp/ts-client 0.1.26 → 0.1.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1 -0
- package/dist/openai.d.ts +1 -0
- package/dist/openai.js +20 -0
- package/dist/openai.mjs +2 -0
- package/dist/openapi-typescript/openapi-schema-oai.d.ts +4371 -0
- package/dist/openapi-typescript/openapi-schema-oai.ts +4372 -0
- package/dist/openapi-typescript/openapi-schema.d.ts +383 -2169
- package/dist/openapi-typescript/openapi-schema.ts +383 -2169
- package/dist/types/types.gen.d.ts +357 -1770
- package/dist/types/types.gen.ts +378 -1935
- package/dist/types-oai/index.d.ts +1 -0
- package/dist/types-oai/index.ts +2 -0
- package/dist/types-oai/types.gen.d.ts +4428 -0
- package/dist/types-oai/types.gen.ts +4810 -0
- package/package.json +23 -7
|
@@ -3,66 +3,6 @@
|
|
|
3
3
|
* Do not make direct changes to the file.
|
|
4
4
|
*/
|
|
5
5
|
export interface paths {
|
|
6
|
-
"/api/chat": {
|
|
7
|
-
parameters: {
|
|
8
|
-
query?: never;
|
|
9
|
-
header?: never;
|
|
10
|
-
path?: never;
|
|
11
|
-
cookie?: never;
|
|
12
|
-
};
|
|
13
|
-
get?: never;
|
|
14
|
-
put?: never;
|
|
15
|
-
/**
|
|
16
|
-
* Chat with Model (Ollama Compatible)
|
|
17
|
-
* @description Creates a chat completion using Ollama API format. Supports both streaming and non-streaming responses with Ollama-specific options and response format.
|
|
18
|
-
*/
|
|
19
|
-
post: operations["chatOllamaModel"];
|
|
20
|
-
delete?: never;
|
|
21
|
-
options?: never;
|
|
22
|
-
head?: never;
|
|
23
|
-
patch?: never;
|
|
24
|
-
trace?: never;
|
|
25
|
-
};
|
|
26
|
-
"/api/show": {
|
|
27
|
-
parameters: {
|
|
28
|
-
query?: never;
|
|
29
|
-
header?: never;
|
|
30
|
-
path?: never;
|
|
31
|
-
cookie?: never;
|
|
32
|
-
};
|
|
33
|
-
get?: never;
|
|
34
|
-
put?: never;
|
|
35
|
-
/**
|
|
36
|
-
* Show Model Details (Ollama Compatible)
|
|
37
|
-
* @description Retrieves detailed information about a specific model in Ollama API compatible format. Includes model parameters, template, license, and configuration details.
|
|
38
|
-
*/
|
|
39
|
-
post: operations["showOllamaModel"];
|
|
40
|
-
delete?: never;
|
|
41
|
-
options?: never;
|
|
42
|
-
head?: never;
|
|
43
|
-
patch?: never;
|
|
44
|
-
trace?: never;
|
|
45
|
-
};
|
|
46
|
-
"/api/tags": {
|
|
47
|
-
parameters: {
|
|
48
|
-
query?: never;
|
|
49
|
-
header?: never;
|
|
50
|
-
path?: never;
|
|
51
|
-
cookie?: never;
|
|
52
|
-
};
|
|
53
|
-
/**
|
|
54
|
-
* List Available Models (Ollama Compatible)
|
|
55
|
-
* @description Returns a list of all available models in Ollama API compatible format. Includes model metadata such as size, modification time, and format details.
|
|
56
|
-
*/
|
|
57
|
-
get: operations["listOllamaModels"];
|
|
58
|
-
put?: never;
|
|
59
|
-
post?: never;
|
|
60
|
-
delete?: never;
|
|
61
|
-
options?: never;
|
|
62
|
-
head?: never;
|
|
63
|
-
patch?: never;
|
|
64
|
-
trace?: never;
|
|
65
|
-
};
|
|
66
6
|
"/bodhi/v1/access-requests": {
|
|
67
7
|
parameters: {
|
|
68
8
|
query?: never;
|
|
@@ -728,7 +668,7 @@ export interface paths {
|
|
|
728
668
|
};
|
|
729
669
|
/**
|
|
730
670
|
* Get Available API Formats
|
|
731
|
-
* @description Retrieves list of supported API formats/protocols (
|
|
671
|
+
* @description Retrieves list of supported API formats/protocols: 'openai' (Chat Completions) and 'openai_responses' (Responses API).
|
|
732
672
|
*/
|
|
733
673
|
get: operations["getApiFormats"];
|
|
734
674
|
put?: never;
|
|
@@ -1252,86 +1192,6 @@ export interface paths {
|
|
|
1252
1192
|
patch?: never;
|
|
1253
1193
|
trace?: never;
|
|
1254
1194
|
};
|
|
1255
|
-
"/v1/chat/completions": {
|
|
1256
|
-
parameters: {
|
|
1257
|
-
query?: never;
|
|
1258
|
-
header?: never;
|
|
1259
|
-
path?: never;
|
|
1260
|
-
cookie?: never;
|
|
1261
|
-
};
|
|
1262
|
-
get?: never;
|
|
1263
|
-
put?: never;
|
|
1264
|
-
/**
|
|
1265
|
-
* Create Chat Completion (OpenAI Compatible)
|
|
1266
|
-
* @description Creates a chat completion response using the specified model. Supports both streaming and non-streaming responses. Fully compatible with OpenAI's chat completions API format.
|
|
1267
|
-
*/
|
|
1268
|
-
post: operations["createChatCompletion"];
|
|
1269
|
-
delete?: never;
|
|
1270
|
-
options?: never;
|
|
1271
|
-
head?: never;
|
|
1272
|
-
patch?: never;
|
|
1273
|
-
trace?: never;
|
|
1274
|
-
};
|
|
1275
|
-
"/v1/embeddings": {
|
|
1276
|
-
parameters: {
|
|
1277
|
-
query?: never;
|
|
1278
|
-
header?: never;
|
|
1279
|
-
path?: never;
|
|
1280
|
-
cookie?: never;
|
|
1281
|
-
};
|
|
1282
|
-
get?: never;
|
|
1283
|
-
put?: never;
|
|
1284
|
-
/**
|
|
1285
|
-
* Create Embeddings (OpenAI Compatible)
|
|
1286
|
-
* @description Creates embeddings for the input text using the specified model. Fully compatible with OpenAI's embeddings API format.
|
|
1287
|
-
*/
|
|
1288
|
-
post: operations["createEmbedding"];
|
|
1289
|
-
delete?: never;
|
|
1290
|
-
options?: never;
|
|
1291
|
-
head?: never;
|
|
1292
|
-
patch?: never;
|
|
1293
|
-
trace?: never;
|
|
1294
|
-
};
|
|
1295
|
-
"/v1/models": {
|
|
1296
|
-
parameters: {
|
|
1297
|
-
query?: never;
|
|
1298
|
-
header?: never;
|
|
1299
|
-
path?: never;
|
|
1300
|
-
cookie?: never;
|
|
1301
|
-
};
|
|
1302
|
-
/**
|
|
1303
|
-
* List Available Models (OpenAI Compatible)
|
|
1304
|
-
* @description Returns a list of all available models in OpenAI API compatible format. Includes user aliases, model aliases, and API provider aliases that can be used with the chat completions endpoint.
|
|
1305
|
-
*/
|
|
1306
|
-
get: operations["listModels"];
|
|
1307
|
-
put?: never;
|
|
1308
|
-
post?: never;
|
|
1309
|
-
delete?: never;
|
|
1310
|
-
options?: never;
|
|
1311
|
-
head?: never;
|
|
1312
|
-
patch?: never;
|
|
1313
|
-
trace?: never;
|
|
1314
|
-
};
|
|
1315
|
-
"/v1/models/{id}": {
|
|
1316
|
-
parameters: {
|
|
1317
|
-
query?: never;
|
|
1318
|
-
header?: never;
|
|
1319
|
-
path?: never;
|
|
1320
|
-
cookie?: never;
|
|
1321
|
-
};
|
|
1322
|
-
/**
|
|
1323
|
-
* Get Model Details (OpenAI Compatible)
|
|
1324
|
-
* @description Retrieves details for a specific model by ID in OpenAI API compatible format. The model ID can be a user alias, model alias, or API provider alias.
|
|
1325
|
-
*/
|
|
1326
|
-
get: operations["getModel"];
|
|
1327
|
-
put?: never;
|
|
1328
|
-
post?: never;
|
|
1329
|
-
delete?: never;
|
|
1330
|
-
options?: never;
|
|
1331
|
-
head?: never;
|
|
1332
|
-
patch?: never;
|
|
1333
|
-
trace?: never;
|
|
1334
|
-
};
|
|
1335
1195
|
}
|
|
1336
1196
|
export type webhooks = Record<string, never>;
|
|
1337
1197
|
export interface components {
|
|
@@ -1432,7 +1292,7 @@ export interface components {
|
|
|
1432
1292
|
* @description API format/protocol specification
|
|
1433
1293
|
* @enum {string}
|
|
1434
1294
|
*/
|
|
1435
|
-
ApiFormat: "openai" | "placeholder";
|
|
1295
|
+
ApiFormat: "openai" | "openai_responses" | "placeholder";
|
|
1436
1296
|
/**
|
|
1437
1297
|
* @description Response containing available API formats
|
|
1438
1298
|
* @example {
|
|
@@ -1618,397 +1478,58 @@ export interface components {
|
|
|
1618
1478
|
*/
|
|
1619
1479
|
client_id: string;
|
|
1620
1480
|
};
|
|
1621
|
-
/** @
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
|
-
|
|
1630
|
-
|
|
1631
|
-
|
|
1632
|
-
message: components["schemas"]["ChatCompletionResponseMessage"];
|
|
1633
|
-
finish_reason?: null | components["schemas"]["FinishReason"];
|
|
1634
|
-
logprobs?: null | components["schemas"]["ChatChoiceLogprobs"];
|
|
1635
|
-
};
|
|
1636
|
-
ChatChoiceLogprobs: {
|
|
1637
|
-
/** @description A list of message content tokens with log probability information. */
|
|
1638
|
-
content?: components["schemas"]["ChatCompletionTokenLogprob"][] | null;
|
|
1639
|
-
refusal?: components["schemas"]["ChatCompletionTokenLogprob"][] | null;
|
|
1640
|
-
};
|
|
1641
|
-
ChatChoiceStream: {
|
|
1642
|
-
/**
|
|
1643
|
-
* Format: int32
|
|
1644
|
-
* @description The index of the choice in the list of choices.
|
|
1645
|
-
*/
|
|
1646
|
-
index: number;
|
|
1647
|
-
delta: components["schemas"]["ChatCompletionStreamResponseDelta"];
|
|
1648
|
-
finish_reason?: null | components["schemas"]["FinishReason"];
|
|
1649
|
-
logprobs?: null | components["schemas"]["ChatChoiceLogprobs"];
|
|
1650
|
-
};
|
|
1651
|
-
ChatCompletionAllowedTools: {
|
|
1652
|
-
/** @description Constrains the tools available to the model to a pre-defined set.
|
|
1653
|
-
*
|
|
1654
|
-
* `auto` allows the model to pick from among the allowed tools and generate a
|
|
1655
|
-
* message.
|
|
1656
|
-
*
|
|
1657
|
-
* `required` requires the model to call one or more of the allowed tools. */
|
|
1658
|
-
mode: components["schemas"]["ToolChoiceAllowedMode"];
|
|
1659
|
-
/** @description A list of tool definitions that the model should be allowed to call.
|
|
1660
|
-
*
|
|
1661
|
-
* For the Chat Completions API, the list of tool definitions might look like:
|
|
1662
|
-
* ```json
|
|
1663
|
-
* [
|
|
1664
|
-
* { "type": "function", "function": { "name": "get_weather" } },
|
|
1665
|
-
* { "type": "function", "function": { "name": "get_time" } }
|
|
1666
|
-
* ]
|
|
1667
|
-
* ``` */
|
|
1668
|
-
tools: unknown[];
|
|
1669
|
-
};
|
|
1670
|
-
ChatCompletionAllowedToolsChoice: {
|
|
1671
|
-
allowed_tools: components["schemas"]["ChatCompletionAllowedTools"][];
|
|
1672
|
-
};
|
|
1673
|
-
ChatCompletionAudio: {
|
|
1674
|
-
/** @description The voice the model uses to respond. Supported built-in voices are `alloy`, `ash`,
|
|
1675
|
-
* `ballad`, `coral`, `echo`, `fable`, `nova`, `onyx`, `sage`, `shimmer`, `marin`, and `cedar`. */
|
|
1676
|
-
voice: components["schemas"]["ChatCompletionAudioVoice"];
|
|
1677
|
-
/** @description Specifies the output audio format. Must be one of `wav`, `aac`, `mp3`, `flac`, `opus`, or `pcm16`. */
|
|
1678
|
-
format: components["schemas"]["ChatCompletionAudioFormat"];
|
|
1679
|
-
};
|
|
1680
|
-
/** @enum {string} */
|
|
1681
|
-
ChatCompletionAudioFormat: "wav" | "aac" | "mp3" | "flac" | "opus" | "pcm16";
|
|
1682
|
-
ChatCompletionAudioVoice: "alloy" | "ash" | "ballad" | "coral" | "echo" | "fable" | "nova" | "onyx" | "sage" | "shimmer" | {
|
|
1683
|
-
other: string;
|
|
1684
|
-
};
|
|
1685
|
-
ChatCompletionFunctionCall: "none" | "auto" | {
|
|
1686
|
-
/** @description Forces the model to call the specified function. */
|
|
1687
|
-
Function: {
|
|
1688
|
-
name: string;
|
|
1689
|
-
};
|
|
1690
|
-
};
|
|
1691
|
-
ChatCompletionFunctions: {
|
|
1692
|
-
/** @description The name of the function to be called. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 64. */
|
|
1693
|
-
name: string;
|
|
1694
|
-
/** @description A description of what the function does, used by the model to choose when and how to call the function. */
|
|
1695
|
-
description?: string | null;
|
|
1696
|
-
/** @description The parameters the functions accepts, described as a JSON Schema object. See the [guide](https://platform.openai.com/docs/guides/text-generation/function-calling) for examples, and the [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for documentation about the format.
|
|
1697
|
-
*
|
|
1698
|
-
* Omitting `parameters` defines a function with an empty parameter list. */
|
|
1699
|
-
parameters: unknown;
|
|
1700
|
-
};
|
|
1701
|
-
ChatCompletionMessageCustomToolCall: {
|
|
1702
|
-
/** @description The ID of the tool call. */
|
|
1703
|
-
id: string;
|
|
1704
|
-
/** @description The custom tool that the model called. */
|
|
1705
|
-
custom_tool: components["schemas"]["CustomTool"];
|
|
1706
|
-
};
|
|
1707
|
-
ChatCompletionMessageToolCall: {
|
|
1708
|
-
/** @description The ID of the tool call. */
|
|
1709
|
-
id: string;
|
|
1710
|
-
/** @description The function that the model called. */
|
|
1711
|
-
function: components["schemas"]["FunctionCall"];
|
|
1712
|
-
};
|
|
1713
|
-
ChatCompletionMessageToolCallChunk: {
|
|
1714
|
-
/** Format: int32 */
|
|
1715
|
-
index: number;
|
|
1716
|
-
/** @description The ID of the tool call. */
|
|
1717
|
-
id?: string | null;
|
|
1718
|
-
type?: null | components["schemas"]["FunctionType"];
|
|
1719
|
-
function?: null | components["schemas"]["FunctionCallStream"];
|
|
1720
|
-
};
|
|
1721
|
-
ChatCompletionMessageToolCalls: (components["schemas"]["ChatCompletionMessageToolCall"] & {
|
|
1722
|
-
/** @enum {string} */
|
|
1723
|
-
type: "function";
|
|
1724
|
-
}) | (components["schemas"]["ChatCompletionMessageCustomToolCall"] & {
|
|
1725
|
-
/** @enum {string} */
|
|
1726
|
-
type: "custom";
|
|
1727
|
-
});
|
|
1728
|
-
/** @description Specifies a tool the model should use. Use to force the model to call a specific function. */
|
|
1729
|
-
ChatCompletionNamedToolChoice: {
|
|
1730
|
-
function: components["schemas"]["FunctionName"];
|
|
1731
|
-
};
|
|
1732
|
-
ChatCompletionNamedToolChoiceCustom: {
|
|
1733
|
-
custom: components["schemas"]["CustomName"];
|
|
1734
|
-
};
|
|
1735
|
-
ChatCompletionRequestAssistantMessage: {
|
|
1736
|
-
content?: null | components["schemas"]["ChatCompletionRequestAssistantMessageContent"];
|
|
1737
|
-
/** @description The refusal message by the assistant. */
|
|
1738
|
-
refusal?: string | null;
|
|
1739
|
-
/** @description An optional name for the participant. Provides the model information to differentiate between participants of the same role. */
|
|
1740
|
-
name?: string | null;
|
|
1741
|
-
audio?: null | components["schemas"]["ChatCompletionRequestAssistantMessageAudio"];
|
|
1742
|
-
tool_calls?: components["schemas"]["ChatCompletionMessageToolCalls"][] | null;
|
|
1743
|
-
function_call?: null | components["schemas"]["FunctionCall"];
|
|
1744
|
-
};
|
|
1745
|
-
ChatCompletionRequestAssistantMessageAudio: {
|
|
1746
|
-
/** @description Unique identifier for a previous audio response from the model. */
|
|
1747
|
-
id: string;
|
|
1748
|
-
};
|
|
1749
|
-
ChatCompletionRequestAssistantMessageContent: string | components["schemas"]["ChatCompletionRequestAssistantMessageContentPart"][];
|
|
1750
|
-
ChatCompletionRequestAssistantMessageContentPart: (components["schemas"]["ChatCompletionRequestMessageContentPartText"] & {
|
|
1751
|
-
/** @enum {string} */
|
|
1752
|
-
type: "text";
|
|
1753
|
-
}) | (components["schemas"]["ChatCompletionRequestMessageContentPartRefusal"] & {
|
|
1754
|
-
/** @enum {string} */
|
|
1755
|
-
type: "refusal";
|
|
1756
|
-
});
|
|
1757
|
-
ChatCompletionRequestDeveloperMessage: {
|
|
1758
|
-
/** @description The contents of the developer message. */
|
|
1759
|
-
content: components["schemas"]["ChatCompletionRequestDeveloperMessageContent"];
|
|
1760
|
-
/** @description An optional name for the participant. Provides the model information to differentiate between participants of the same role. */
|
|
1761
|
-
name?: string | null;
|
|
1762
|
-
};
|
|
1763
|
-
ChatCompletionRequestDeveloperMessageContent: string | components["schemas"]["ChatCompletionRequestDeveloperMessageContentPart"][];
|
|
1764
|
-
ChatCompletionRequestDeveloperMessageContentPart: components["schemas"]["ChatCompletionRequestMessageContentPartText"] & {
|
|
1765
|
-
/** @enum {string} */
|
|
1766
|
-
type: "text";
|
|
1767
|
-
};
|
|
1768
|
-
ChatCompletionRequestFunctionMessage: {
|
|
1769
|
-
/** @description The return value from the function call, to return to the model. */
|
|
1770
|
-
content?: string | null;
|
|
1771
|
-
/** @description The name of the function to call. */
|
|
1772
|
-
name: string;
|
|
1773
|
-
};
|
|
1774
|
-
ChatCompletionRequestMessage: (components["schemas"]["ChatCompletionRequestDeveloperMessage"] & {
|
|
1775
|
-
/** @enum {string} */
|
|
1776
|
-
role: "developer";
|
|
1777
|
-
}) | (components["schemas"]["ChatCompletionRequestSystemMessage"] & {
|
|
1778
|
-
/** @enum {string} */
|
|
1779
|
-
role: "system";
|
|
1780
|
-
}) | (components["schemas"]["ChatCompletionRequestUserMessage"] & {
|
|
1781
|
-
/** @enum {string} */
|
|
1782
|
-
role: "user";
|
|
1783
|
-
}) | (components["schemas"]["ChatCompletionRequestAssistantMessage"] & {
|
|
1784
|
-
/** @enum {string} */
|
|
1785
|
-
role: "assistant";
|
|
1786
|
-
}) | (components["schemas"]["ChatCompletionRequestToolMessage"] & {
|
|
1787
|
-
/** @enum {string} */
|
|
1788
|
-
role: "tool";
|
|
1789
|
-
}) | (components["schemas"]["ChatCompletionRequestFunctionMessage"] & {
|
|
1790
|
-
/** @enum {string} */
|
|
1791
|
-
role: "function";
|
|
1792
|
-
});
|
|
1793
|
-
/** @description Learn about [audio inputs](https://platform.openai.com/docs/guides/audio). */
|
|
1794
|
-
ChatCompletionRequestMessageContentPartAudio: {
|
|
1795
|
-
input_audio: components["schemas"]["InputAudio"];
|
|
1796
|
-
};
|
|
1797
|
-
ChatCompletionRequestMessageContentPartFile: {
|
|
1798
|
-
file: components["schemas"]["FileObject"];
|
|
1799
|
-
};
|
|
1800
|
-
ChatCompletionRequestMessageContentPartImage: {
|
|
1801
|
-
image_url: components["schemas"]["ImageUrl"];
|
|
1802
|
-
};
|
|
1803
|
-
ChatCompletionRequestMessageContentPartRefusal: {
|
|
1804
|
-
/** @description The refusal message generated by the model. */
|
|
1805
|
-
refusal: string;
|
|
1806
|
-
};
|
|
1807
|
-
ChatCompletionRequestMessageContentPartText: {
|
|
1808
|
-
text: string;
|
|
1809
|
-
};
|
|
1810
|
-
ChatCompletionRequestSystemMessage: {
|
|
1811
|
-
/** @description The contents of the system message. */
|
|
1812
|
-
content: components["schemas"]["ChatCompletionRequestSystemMessageContent"];
|
|
1813
|
-
/** @description An optional name for the participant. Provides the model information to differentiate between participants of the same role. */
|
|
1814
|
-
name?: string | null;
|
|
1815
|
-
};
|
|
1816
|
-
ChatCompletionRequestSystemMessageContent: string | components["schemas"]["ChatCompletionRequestSystemMessageContentPart"][];
|
|
1817
|
-
ChatCompletionRequestSystemMessageContentPart: components["schemas"]["ChatCompletionRequestMessageContentPartText"] & {
|
|
1818
|
-
/** @enum {string} */
|
|
1819
|
-
type: "text";
|
|
1820
|
-
};
|
|
1821
|
-
/** @description Tool message */
|
|
1822
|
-
ChatCompletionRequestToolMessage: {
|
|
1823
|
-
/** @description The contents of the tool message. */
|
|
1824
|
-
content: components["schemas"]["ChatCompletionRequestToolMessageContent"];
|
|
1825
|
-
tool_call_id: string;
|
|
1826
|
-
};
|
|
1827
|
-
ChatCompletionRequestToolMessageContent: string | components["schemas"]["ChatCompletionRequestToolMessageContentPart"][];
|
|
1828
|
-
ChatCompletionRequestToolMessageContentPart: components["schemas"]["ChatCompletionRequestMessageContentPartText"] & {
|
|
1829
|
-
/** @enum {string} */
|
|
1830
|
-
type: "text";
|
|
1831
|
-
};
|
|
1832
|
-
ChatCompletionRequestUserMessage: {
|
|
1833
|
-
/** @description The contents of the user message. */
|
|
1834
|
-
content: components["schemas"]["ChatCompletionRequestUserMessageContent"];
|
|
1835
|
-
/** @description An optional name for the participant. Provides the model information to differentiate between participants of the same role. */
|
|
1836
|
-
name?: string | null;
|
|
1837
|
-
};
|
|
1838
|
-
ChatCompletionRequestUserMessageContent: string | components["schemas"]["ChatCompletionRequestUserMessageContentPart"][];
|
|
1839
|
-
ChatCompletionRequestUserMessageContentPart: (components["schemas"]["ChatCompletionRequestMessageContentPartText"] & {
|
|
1840
|
-
/** @enum {string} */
|
|
1841
|
-
type: "text";
|
|
1842
|
-
}) | (components["schemas"]["ChatCompletionRequestMessageContentPartImage"] & {
|
|
1843
|
-
/** @enum {string} */
|
|
1844
|
-
type: "image_url";
|
|
1845
|
-
}) | (components["schemas"]["ChatCompletionRequestMessageContentPartAudio"] & {
|
|
1846
|
-
/** @enum {string} */
|
|
1847
|
-
type: "input_audio";
|
|
1848
|
-
}) | (components["schemas"]["ChatCompletionRequestMessageContentPartFile"] & {
|
|
1849
|
-
/** @enum {string} */
|
|
1850
|
-
type: "file";
|
|
1851
|
-
});
|
|
1852
|
-
/** @description A chat completion message generated by the model. */
|
|
1853
|
-
ChatCompletionResponseMessage: {
|
|
1854
|
-
/** @description The contents of the message. */
|
|
1855
|
-
content?: string | null;
|
|
1856
|
-
/** @description The refusal message generated by the model. */
|
|
1857
|
-
refusal?: string | null;
|
|
1858
|
-
/** @description The tool calls generated by the model, such as function calls. */
|
|
1859
|
-
tool_calls?: components["schemas"]["ChatCompletionMessageToolCalls"][] | null;
|
|
1860
|
-
annotations?: components["schemas"]["ChatCompletionResponseMessageAnnotation"][] | null;
|
|
1861
|
-
/** @description The role of the author of this message. */
|
|
1862
|
-
role: components["schemas"]["Role"];
|
|
1863
|
-
function_call?: null | components["schemas"]["FunctionCall"];
|
|
1864
|
-
audio?: null | components["schemas"]["ChatCompletionResponseMessageAudio"];
|
|
1865
|
-
/** @description The contents of the reasoning message. */
|
|
1866
|
-
reasoning_content?: string | null;
|
|
1867
|
-
};
|
|
1868
|
-
ChatCompletionResponseMessageAnnotation: {
|
|
1869
|
-
url_citation: components["schemas"]["UrlCitation"];
|
|
1870
|
-
/** @enum {string} */
|
|
1871
|
-
type: "url_citation";
|
|
1481
|
+
/** @example {
|
|
1482
|
+
* "error": {
|
|
1483
|
+
* "code": "validation_error",
|
|
1484
|
+
* "message": "Validation failed: name is required",
|
|
1485
|
+
* "param": "name",
|
|
1486
|
+
* "type": "invalid_request_error"
|
|
1487
|
+
* }
|
|
1488
|
+
* } */
|
|
1489
|
+
BodhiApiError: {
|
|
1490
|
+
/** @description Error details following OpenAI API error format */
|
|
1491
|
+
error: components["schemas"]["BodhiErrorBody"];
|
|
1872
1492
|
};
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
|
|
1882
|
-
|
|
1883
|
-
/** @description Transcript of the audio generated by the model. */
|
|
1884
|
-
transcript: string;
|
|
1885
|
-
};
|
|
1886
|
-
/** @description Options for streaming response. Only set this when you set `stream: true`. */
|
|
1887
|
-
ChatCompletionStreamOptions: {
|
|
1888
|
-
/** @description If set, an additional chunk will be streamed before the `data: [DONE]`
|
|
1889
|
-
* message. The `usage` field on this chunk shows the token usage statistics
|
|
1890
|
-
* for the entire request, and the `choices` field will always be an empty
|
|
1891
|
-
* array.
|
|
1892
|
-
*
|
|
1893
|
-
* All other chunks will also include a `usage` field, but with a null
|
|
1894
|
-
* value. **NOTE:** If the stream is interrupted, you may not receive the
|
|
1895
|
-
* final usage chunk which contains the total token usage for the request. */
|
|
1896
|
-
include_usage?: boolean | null;
|
|
1897
|
-
/** @description When true, stream obfuscation will be enabled. Stream obfuscation adds
|
|
1898
|
-
* random characters to an `obfuscation` field on streaming delta events to
|
|
1899
|
-
* normalize payload sizes as a mitigation to certain side-channel attacks.
|
|
1900
|
-
* These obfuscation fields are included by default, but add a small amount
|
|
1901
|
-
* of overhead to the data stream. You can set `include_obfuscation` to
|
|
1902
|
-
* false to optimize for bandwidth if you trust the network links between
|
|
1903
|
-
* your application and the OpenAI API. */
|
|
1904
|
-
include_obfuscation?: boolean | null;
|
|
1905
|
-
};
|
|
1906
|
-
/** @description A chat completion delta generated by streamed model responses. */
|
|
1907
|
-
ChatCompletionStreamResponseDelta: {
|
|
1908
|
-
/** @description The contents of the chunk message. */
|
|
1909
|
-
content?: string | null;
|
|
1910
|
-
function_call?: null | components["schemas"]["FunctionCallStream"];
|
|
1911
|
-
tool_calls?: components["schemas"]["ChatCompletionMessageToolCallChunk"][] | null;
|
|
1912
|
-
role?: null | components["schemas"]["Role"];
|
|
1913
|
-
/** @description The refusal message generated by the model. */
|
|
1914
|
-
refusal?: string | null;
|
|
1915
|
-
/** @description The contents of the chunk reasoning message. */
|
|
1916
|
-
reasoning_content?: string | null;
|
|
1917
|
-
};
|
|
1918
|
-
ChatCompletionTokenLogprob: {
|
|
1919
|
-
/** @description The token. */
|
|
1920
|
-
token: string;
|
|
1493
|
+
/** @example {
|
|
1494
|
+
* "code": "validation_error",
|
|
1495
|
+
* "message": "Validation failed: name is required",
|
|
1496
|
+
* "param": {
|
|
1497
|
+
* "field": "name",
|
|
1498
|
+
* "value": "invalid"
|
|
1499
|
+
* },
|
|
1500
|
+
* "type": "invalid_request_error"
|
|
1501
|
+
* } */
|
|
1502
|
+
BodhiErrorBody: {
|
|
1921
1503
|
/**
|
|
1922
|
-
*
|
|
1923
|
-
* @
|
|
1504
|
+
* @description Human-readable error message describing what went wrong
|
|
1505
|
+
* @example Validation failed: name is required
|
|
1924
1506
|
*/
|
|
1925
|
-
|
|
1926
|
-
/** @description A list of integers representing the UTF-8 bytes representation of the token. Useful in instances where characters are represented by multiple tokens and their byte representations must be combined to generate the correct text representation. Can be `null` if there is no bytes representation for the token. */
|
|
1927
|
-
bytes?: number[] | null;
|
|
1928
|
-
/** @description List of the most likely tokens and their log probability, at this token position. In rare cases, there may be fewer than the number of requested `top_logprobs` returned. */
|
|
1929
|
-
top_logprobs: components["schemas"]["TopLogprobs"][];
|
|
1930
|
-
};
|
|
1931
|
-
ChatCompletionTool: {
|
|
1932
|
-
function: components["schemas"]["FunctionObject"];
|
|
1933
|
-
};
|
|
1934
|
-
/** @description Controls which (if any) tool is called by the model.
|
|
1935
|
-
* `none` means the model will not call any tool and instead generates a message.
|
|
1936
|
-
* `auto` means the model can pick between generating a message or calling one or more tools.
|
|
1937
|
-
* `required` means the model must call one or more tools.
|
|
1938
|
-
* Specifying a particular tool via `{"type": "function", "function": {"name": "my_function"}}` forces the model to call that tool.
|
|
1939
|
-
*
|
|
1940
|
-
* `none` is the default when no tools are present. `auto` is the default if tools are present. */
|
|
1941
|
-
ChatCompletionToolChoiceOption: (components["schemas"]["ChatCompletionAllowedToolsChoice"] & {
|
|
1942
|
-
/** @enum {string} */
|
|
1943
|
-
type: "allowed_tools";
|
|
1944
|
-
}) | (components["schemas"]["ChatCompletionNamedToolChoice"] & {
|
|
1945
|
-
/** @enum {string} */
|
|
1946
|
-
type: "function";
|
|
1947
|
-
}) | (components["schemas"]["ChatCompletionNamedToolChoiceCustom"] & {
|
|
1948
|
-
/** @enum {string} */
|
|
1949
|
-
type: "custom";
|
|
1950
|
-
}) | (components["schemas"]["ToolChoiceOptions"] & {
|
|
1951
|
-
/** @enum {string} */
|
|
1952
|
-
type: "mode";
|
|
1953
|
-
});
|
|
1954
|
-
ChatCompletionTools: (components["schemas"]["ChatCompletionTool"] & {
|
|
1955
|
-
/** @enum {string} */
|
|
1956
|
-
type: "function";
|
|
1957
|
-
}) | (components["schemas"]["CustomToolChatCompletions"] & {
|
|
1958
|
-
/** @enum {string} */
|
|
1959
|
-
type: "custom";
|
|
1960
|
-
});
|
|
1961
|
-
ChatRequest: {
|
|
1962
|
-
model: string;
|
|
1963
|
-
messages: components["schemas"]["Message"][];
|
|
1964
|
-
stream?: boolean | null;
|
|
1965
|
-
format?: string | null;
|
|
1966
|
-
keep_alive?: null | components["schemas"]["Duration"];
|
|
1967
|
-
options?: null | components["schemas"]["Options"];
|
|
1968
|
-
};
|
|
1969
|
-
/** @description Breakdown of tokens used in a completion. */
|
|
1970
|
-
CompletionTokensDetails: {
|
|
1971
|
-
/** Format: int32 */
|
|
1972
|
-
accepted_prediction_tokens?: number | null;
|
|
1507
|
+
message: string;
|
|
1973
1508
|
/**
|
|
1974
|
-
*
|
|
1975
|
-
* @
|
|
1509
|
+
* @description Error type categorizing the kind of error that occurred
|
|
1510
|
+
* @example invalid_request_error
|
|
1976
1511
|
*/
|
|
1977
|
-
|
|
1512
|
+
type: string;
|
|
1978
1513
|
/**
|
|
1979
|
-
*
|
|
1980
|
-
* @
|
|
1514
|
+
* @description Specific error code for programmatic error handling
|
|
1515
|
+
* @example validation_error
|
|
1981
1516
|
*/
|
|
1982
|
-
|
|
1517
|
+
code?: string | null;
|
|
1983
1518
|
/**
|
|
1984
|
-
*
|
|
1985
|
-
* @
|
|
1986
|
-
*
|
|
1987
|
-
*
|
|
1988
|
-
*
|
|
1989
|
-
* window limits.
|
|
1519
|
+
* @description Additional error parameters as key-value pairs (for validation errors)
|
|
1520
|
+
* @example {
|
|
1521
|
+
* "field": "name",
|
|
1522
|
+
* "value": "invalid"
|
|
1523
|
+
* }
|
|
1990
1524
|
*/
|
|
1991
|
-
|
|
1525
|
+
param?: {
|
|
1526
|
+
[key: string]: string;
|
|
1527
|
+
} | null;
|
|
1992
1528
|
};
|
|
1993
|
-
/** @description
|
|
1994
|
-
|
|
1995
|
-
/**
|
|
1996
|
-
|
|
1997
|
-
* @description Number of tokens in the prompt.
|
|
1998
|
-
*/
|
|
1999
|
-
prompt_tokens: number;
|
|
2000
|
-
/**
|
|
2001
|
-
* Format: int32
|
|
2002
|
-
* @description Number of tokens in the generated completion.
|
|
2003
|
-
*/
|
|
2004
|
-
completion_tokens: number;
|
|
2005
|
-
/**
|
|
2006
|
-
* Format: int32
|
|
2007
|
-
* @description Total number of tokens used in the request (prompt + completion).
|
|
2008
|
-
*/
|
|
2009
|
-
total_tokens: number;
|
|
2010
|
-
prompt_tokens_details?: null | components["schemas"]["PromptTokensDetails"];
|
|
2011
|
-
completion_tokens_details?: null | components["schemas"]["CompletionTokensDetails"];
|
|
1529
|
+
/** @description Change user role request */
|
|
1530
|
+
ChangeRoleRequest: {
|
|
1531
|
+
/** @description Role to assign to the user */
|
|
1532
|
+
role: components["schemas"]["ResourceRole"];
|
|
2012
1533
|
};
|
|
2013
1534
|
ContextLimits: {
|
|
2014
1535
|
/** Format: int64 */
|
|
@@ -2065,256 +1586,6 @@ export interface components {
|
|
|
2065
1586
|
CreateAuthConfig: components["schemas"]["CreateMcpAuthConfigRequest"] & {
|
|
2066
1587
|
mcp_server_id: string;
|
|
2067
1588
|
};
|
|
2068
|
-
CreateChatCompletionRequest: {
|
|
2069
|
-
/** @description A list of messages comprising the conversation so far. Depending on the
|
|
2070
|
-
* [model](https://platform.openai.com/docs/models) you use, different message types (modalities)
|
|
2071
|
-
* are supported, like [text](https://platform.openai.com/docs/guides/text-generation),
|
|
2072
|
-
* [images](https://platform.openai.com/docs/guides/vision), and
|
|
2073
|
-
* [audio](https://platform.openai.com/docs/guides/audio). */
|
|
2074
|
-
messages: components["schemas"]["ChatCompletionRequestMessage"][];
|
|
2075
|
-
/** @description Model ID used to generate the response, like `gpt-4o` or `o3`. OpenAI
|
|
2076
|
-
* offers a wide range of models with different capabilities, performance
|
|
2077
|
-
* characteristics, and price points. Refer to the
|
|
2078
|
-
* [model guide](https://platform.openai.com/docs/models)
|
|
2079
|
-
* to browse and compare available models. */
|
|
2080
|
-
model: string;
|
|
2081
|
-
/** @description Output types that you would like the model to generate. Most models are capable of generating
|
|
2082
|
-
* text, which is the default:
|
|
2083
|
-
*
|
|
2084
|
-
* `["text"]`
|
|
2085
|
-
* The `gpt-4o-audio-preview` model can also be used to
|
|
2086
|
-
* [generate audio](https://platform.openai.com/docs/guides/audio). To request that this model
|
|
2087
|
-
* generate both text and audio responses, you can use:
|
|
2088
|
-
*
|
|
2089
|
-
* `["text", "audio"]` */
|
|
2090
|
-
modalities?: components["schemas"]["ResponseModalities"][] | null;
|
|
2091
|
-
verbosity?: null | components["schemas"]["Verbosity"];
|
|
2092
|
-
reasoning_effort?: null | components["schemas"]["ReasoningEffort"];
|
|
2093
|
-
/**
|
|
2094
|
-
* Format: int32
|
|
2095
|
-
* @description An upper bound for the number of tokens that can be generated for a completion, including
|
|
2096
|
-
* visible output tokens and [reasoning tokens](https://platform.openai.com/docs/guides/reasoning).
|
|
2097
|
-
*/
|
|
2098
|
-
max_completion_tokens?: number | null;
|
|
2099
|
-
/**
|
|
2100
|
-
* Format: float
|
|
2101
|
-
* @description Number between -2.0 and 2.0. Positive values penalize new tokens based on
|
|
2102
|
-
* their existing frequency in the text so far, decreasing the model's
|
|
2103
|
-
* likelihood to repeat the same line verbatim.
|
|
2104
|
-
*/
|
|
2105
|
-
frequency_penalty?: number | null;
|
|
2106
|
-
/**
|
|
2107
|
-
* Format: float
|
|
2108
|
-
* @description Number between -2.0 and 2.0. Positive values penalize new tokens based on
|
|
2109
|
-
* whether they appear in the text so far, increasing the model's likelihood
|
|
2110
|
-
* to talk about new topics.
|
|
2111
|
-
*/
|
|
2112
|
-
presence_penalty?: number | null;
|
|
2113
|
-
web_search_options?: null | components["schemas"]["WebSearchOptions"];
|
|
2114
|
-
/**
|
|
2115
|
-
* Format: int32
|
|
2116
|
-
* @description An integer between 0 and 20 specifying the number of most likely tokens to
|
|
2117
|
-
* return at each token position, each with an associated log probability.
|
|
2118
|
-
* `logprobs` must be set to `true` if this parameter is used.
|
|
2119
|
-
*/
|
|
2120
|
-
top_logprobs?: number | null;
|
|
2121
|
-
response_format?: null | components["schemas"]["ResponseFormat"];
|
|
2122
|
-
audio?: null | components["schemas"]["ChatCompletionAudio"];
|
|
2123
|
-
/** @description Whether or not to store the output of this chat completion request for
|
|
2124
|
-
* use in our [model distillation](https://platform.openai.com/docs/guides/distillation) or
|
|
2125
|
-
* [evals](https://platform.openai.com/docs/guides/evals) products.
|
|
2126
|
-
*
|
|
2127
|
-
* Supports text and image inputs. Note: image inputs over 8MB will be dropped. */
|
|
2128
|
-
store?: boolean | null;
|
|
2129
|
-
/** @description If set to true, the model response data will be streamed to the client
|
|
2130
|
-
* as it is generated using [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format).
|
|
2131
|
-
* See the [Streaming section below](https://platform.openai.com/docs/api-reference/chat/streaming)
|
|
2132
|
-
* for more information, along with the [streaming responses](https://platform.openai.com/docs/guides/streaming-responses)
|
|
2133
|
-
* guide for more information on how to handle the streaming events. */
|
|
2134
|
-
stream?: boolean | null;
|
|
2135
|
-
stop?: null | components["schemas"]["StopConfiguration"];
|
|
2136
|
-
/** @description Modify the likelihood of specified tokens appearing in the completion.
|
|
2137
|
-
*
|
|
2138
|
-
* Accepts a json object that maps tokens (specified by their token ID in the tokenizer) to an associated bias value from -100 to 100.
|
|
2139
|
-
* Mathematically, the bias is added to the logits generated by the model prior to sampling.
|
|
2140
|
-
* The exact effect will vary per model, but values between -1 and 1 should decrease or increase likelihood of selection;
|
|
2141
|
-
* values like -100 or 100 should result in a ban or exclusive selection of the relevant token. */
|
|
2142
|
-
logit_bias?: {
|
|
2143
|
-
[key: string]: number;
|
|
2144
|
-
} | null;
|
|
2145
|
-
/** @description Whether to return log probabilities of the output tokens or not. If true,
|
|
2146
|
-
* returns the log probabilities of each output token returned in the `content` of `message`. */
|
|
2147
|
-
logprobs?: boolean | null;
|
|
2148
|
-
/**
|
|
2149
|
-
* Format: int32
|
|
2150
|
-
* @deprecated
|
|
2151
|
-
* @description The maximum number of [tokens](https://platform.openai.com/tokenizer) that can be generated in
|
|
2152
|
-
* the chat completion. This value can be used to control [costs](https://openai.com/api/pricing/) for text generated via API.
|
|
2153
|
-
* This value is now deprecated in favor of `max_completion_tokens`, and is
|
|
2154
|
-
* not compatible with [o-series models](https://platform.openai.com/docs/guides/reasoning).
|
|
2155
|
-
*/
|
|
2156
|
-
max_tokens?: number | null;
|
|
2157
|
-
/**
|
|
2158
|
-
* Format: int32
|
|
2159
|
-
* @description How many chat completion choices to generate for each input message. Note that you will be
|
|
2160
|
-
* charged based on the number of generated tokens across all of the choices. Keep `n` as `1` to
|
|
2161
|
-
* minimize costs.
|
|
2162
|
-
*/
|
|
2163
|
-
n?: number | null;
|
|
2164
|
-
prediction?: null | components["schemas"]["PredictionContent"];
|
|
2165
|
-
/**
|
|
2166
|
-
* Format: int64
|
|
2167
|
-
* @deprecated
|
|
2168
|
-
* @description This feature is in Beta.
|
|
2169
|
-
*
|
|
2170
|
-
* If specified, our system will make a best effort to sample deterministically, such that
|
|
2171
|
-
* repeated requests with the same `seed` and parameters should return the same result.
|
|
2172
|
-
*
|
|
2173
|
-
* Determinism is not guaranteed, and you should refer to the `system_fingerprint` response
|
|
2174
|
-
* parameter to monitor changes in the backend.
|
|
2175
|
-
*/
|
|
2176
|
-
seed?: number | null;
|
|
2177
|
-
stream_options?: null | components["schemas"]["ChatCompletionStreamOptions"];
|
|
2178
|
-
service_tier?: null | components["schemas"]["ServiceTier"];
|
|
2179
|
-
/**
|
|
2180
|
-
* Format: float
|
|
2181
|
-
* @description What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random,
|
|
2182
|
-
* while lower values like 0.2 will make it more focused and deterministic.
|
|
2183
|
-
*
|
|
2184
|
-
* We generally recommend altering this or `top_p` but not both.
|
|
2185
|
-
*/
|
|
2186
|
-
temperature?: number | null;
|
|
2187
|
-
/**
|
|
2188
|
-
* Format: float
|
|
2189
|
-
* @description An alternative to sampling with temperature, called nucleus sampling,
|
|
2190
|
-
* where the model considers the results of the tokens with top_p probability mass.
|
|
2191
|
-
* So 0.1 means only the tokens comprising the top 10% probability mass are considered.
|
|
2192
|
-
*
|
|
2193
|
-
* We generally recommend altering this or `temperature` but not both.
|
|
2194
|
-
*/
|
|
2195
|
-
top_p?: number | null;
|
|
2196
|
-
/** @description A list of tools the model may call. You can provide either
|
|
2197
|
-
* [custom tools](https://platform.openai.com/docs/guides/function-calling#custom-tools) or
|
|
2198
|
-
* [function tools](https://platform.openai.com/docs/guides/function-calling). */
|
|
2199
|
-
tools?: components["schemas"]["ChatCompletionTools"][] | null;
|
|
2200
|
-
tool_choice?: null | components["schemas"]["ChatCompletionToolChoiceOption"];
|
|
2201
|
-
/** @description Whether to enable [parallel function calling](https://platform.openai.com/docs/guides/function-calling#configuring-parallel-function-calling)
|
|
2202
|
-
* during tool use. */
|
|
2203
|
-
parallel_tool_calls?: boolean | null;
|
|
2204
|
-
/**
|
|
2205
|
-
* @deprecated
|
|
2206
|
-
* @description This field is being replaced by `safety_identifier` and `prompt_cache_key`. Use `prompt_cache_key`
|
|
2207
|
-
* instead to maintain caching optimizations.
|
|
2208
|
-
* A stable identifier for your end-users.
|
|
2209
|
-
* Used to boost cache hit rates by better bucketing similar requests and to help OpenAI detect and
|
|
2210
|
-
* prevent abuse. [Learn more](https://platform.openai.com/docs/guides/safety-best-practices#safety-identifiers).
|
|
2211
|
-
*/
|
|
2212
|
-
user?: string | null;
|
|
2213
|
-
/** @description A stable identifier used to help detect users of your application that may be violating OpenAI's
|
|
2214
|
-
* usage policies.
|
|
2215
|
-
*
|
|
2216
|
-
* The IDs should be a string that uniquely identifies each user. We recommend hashing their username
|
|
2217
|
-
* or email address, in order to avoid sending us any identifying information. [Learn
|
|
2218
|
-
* more](https://platform.openai.com/docs/guides/safety-best-practices#safety-identifiers). */
|
|
2219
|
-
safety_identifier?: string | null;
|
|
2220
|
-
/** @description Used by OpenAI to cache responses for similar requests to optimize your cache hit rates. Replaces
|
|
2221
|
-
* the `user` field. [Learn more](https://platform.openai.com/docs/guides/prompt-caching). */
|
|
2222
|
-
prompt_cache_key?: string | null;
|
|
2223
|
-
function_call?: null | components["schemas"]["ChatCompletionFunctionCall"];
|
|
2224
|
-
/**
|
|
2225
|
-
* @deprecated
|
|
2226
|
-
* @description Deprecated in favor of `tools`.
|
|
2227
|
-
*
|
|
2228
|
-
* A list of functions the model may generate JSON inputs for.
|
|
2229
|
-
*/
|
|
2230
|
-
functions?: components["schemas"]["ChatCompletionFunctions"][] | null;
|
|
2231
|
-
metadata?: null | components["schemas"]["Metadata"];
|
|
2232
|
-
/** @description llama.cpp compatible extra params in request */
|
|
2233
|
-
chat_template_kwargs?: {
|
|
2234
|
-
[key: string]: unknown;
|
|
2235
|
-
} | null;
|
|
2236
|
-
};
|
|
2237
|
-
/** @description Represents a chat completion response returned by model, based on the provided input. */
|
|
2238
|
-
CreateChatCompletionResponse: {
|
|
2239
|
-
/** @description A unique identifier for the chat completion. */
|
|
2240
|
-
id: string;
|
|
2241
|
-
/** @description A list of chat completion choices. Can be more than one if `n` is greater than 1. */
|
|
2242
|
-
choices: components["schemas"]["ChatChoice"][];
|
|
2243
|
-
/**
|
|
2244
|
-
* Format: int32
|
|
2245
|
-
* @description The Unix timestamp (in seconds) of when the chat completion was created.
|
|
2246
|
-
*/
|
|
2247
|
-
created: number;
|
|
2248
|
-
/** @description The model used for the chat completion. */
|
|
2249
|
-
model: string;
|
|
2250
|
-
service_tier?: null | components["schemas"]["ServiceTier"];
|
|
2251
|
-
/**
|
|
2252
|
-
* @deprecated
|
|
2253
|
-
* @description This fingerprint represents the backend configuration that the model runs with.
|
|
2254
|
-
*
|
|
2255
|
-
* Can be used in conjunction with the `seed` request parameter to understand when backend changes have been made that might impact determinism.
|
|
2256
|
-
*/
|
|
2257
|
-
system_fingerprint?: string | null;
|
|
2258
|
-
/** @description The object type, which is always `chat.completion`. */
|
|
2259
|
-
object: string;
|
|
2260
|
-
usage?: null | components["schemas"]["CompletionUsage"];
|
|
2261
|
-
};
|
|
2262
|
-
/** @description Represents a streamed chunk of a chat completion response returned by the model, based on the provided input. [Learn more](https://platform.openai.com/docs/guides/streaming-responses). */
|
|
2263
|
-
CreateChatCompletionStreamResponse: {
|
|
2264
|
-
/** @description A unique identifier for the chat completion. Each chunk has the same ID. */
|
|
2265
|
-
id: string;
|
|
2266
|
-
/** @description A list of chat completion choices. Can contain more than one elements if `n` is greater than 1. Can also be empty for the last chunk if you set `stream_options: {"include_usage": true}`. */
|
|
2267
|
-
choices: components["schemas"]["ChatChoiceStream"][];
|
|
2268
|
-
/**
|
|
2269
|
-
* Format: int32
|
|
2270
|
-
* @description The Unix timestamp (in seconds) of when the chat completion was created. Each chunk has the same timestamp.
|
|
2271
|
-
*/
|
|
2272
|
-
created: number;
|
|
2273
|
-
/** @description The model to generate the completion. */
|
|
2274
|
-
model: string;
|
|
2275
|
-
service_tier?: null | components["schemas"]["ServiceTier"];
|
|
2276
|
-
/**
|
|
2277
|
-
* @deprecated
|
|
2278
|
-
* @description This fingerprint represents the backend configuration that the model runs with.
|
|
2279
|
-
* Can be used in conjunction with the `seed` request parameter to understand when backend changes have been made that might impact determinism.
|
|
2280
|
-
*/
|
|
2281
|
-
system_fingerprint?: string | null;
|
|
2282
|
-
/** @description The object type, which is always `chat.completion.chunk`. */
|
|
2283
|
-
object: string;
|
|
2284
|
-
usage?: null | components["schemas"]["CompletionUsage"];
|
|
2285
|
-
};
|
|
2286
|
-
CreateEmbeddingRequest: {
|
|
2287
|
-
/** @description ID of the model to use. You can use the [List models](https://platform.openai.com/docs/api-reference/models/list)
|
|
2288
|
-
* API to see all of your available models, or see our [Model overview](https://platform.openai.com/docs/models)
|
|
2289
|
-
* for descriptions of them. */
|
|
2290
|
-
model: string;
|
|
2291
|
-
/** @description Input text to embed, encoded as a string or array of tokens. To embed multiple inputs in a single
|
|
2292
|
-
* request, pass an array of strings or array of token arrays. The input must not exceed the max
|
|
2293
|
-
* input tokens for the model (8192 tokens for all embedding models), cannot be an empty string, and
|
|
2294
|
-
* any array must be 2048 dimensions or less. [Example Python
|
|
2295
|
-
* code](https://cookbook.openai.com/examples/how_to_count_tokens_with_tiktoken) for counting tokens.
|
|
2296
|
-
* In addition to the per-input token limit, all embedding models enforce a maximum of 300,000
|
|
2297
|
-
* tokens summed across all inputs in a single request. */
|
|
2298
|
-
input: components["schemas"]["EmbeddingInput"];
|
|
2299
|
-
encoding_format?: null | components["schemas"]["EncodingFormat"];
|
|
2300
|
-
/** @description A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse.
|
|
2301
|
-
* [Learn more](https://platform.openai.com/docs/guides/safety-best-practices#end-user-ids). */
|
|
2302
|
-
user?: string | null;
|
|
2303
|
-
/**
|
|
2304
|
-
* Format: int32
|
|
2305
|
-
* @description The number of dimensions the resulting output embeddings should have. Only supported in `text-embedding-3` and later models.
|
|
2306
|
-
*/
|
|
2307
|
-
dimensions?: number | null;
|
|
2308
|
-
};
|
|
2309
|
-
CreateEmbeddingResponse: {
|
|
2310
|
-
object: string;
|
|
2311
|
-
/** @description The name of the model used to generate the embedding. */
|
|
2312
|
-
model: string;
|
|
2313
|
-
/** @description The list of embeddings generated by the model. */
|
|
2314
|
-
data: components["schemas"]["Embedding"][];
|
|
2315
|
-
/** @description The usage information for the request. */
|
|
2316
|
-
usage: components["schemas"]["EmbeddingUsage"];
|
|
2317
|
-
};
|
|
2318
1589
|
/** @description Discriminated union for creating any type of MCP auth config.
|
|
2319
1590
|
* The JSON `"type"` field determines the variant: `"header"` or `"oauth"`. */
|
|
2320
1591
|
CreateMcpAuthConfigRequest: {
|
|
@@ -2359,41 +1630,6 @@ export interface components {
|
|
|
2359
1630
|
/** @description Token scope defining access level */
|
|
2360
1631
|
scope: components["schemas"]["TokenScope"];
|
|
2361
1632
|
};
|
|
2362
|
-
CustomGrammarFormatParam: {
|
|
2363
|
-
/** @description The grammar definition. */
|
|
2364
|
-
definition: string;
|
|
2365
|
-
/** @description The syntax of the grammar definition. One of `lark` or `regex`. */
|
|
2366
|
-
syntax: components["schemas"]["GrammarSyntax"];
|
|
2367
|
-
};
|
|
2368
|
-
CustomName: {
|
|
2369
|
-
/** @description The name of the custom tool to call. */
|
|
2370
|
-
name: string;
|
|
2371
|
-
};
|
|
2372
|
-
CustomTool: {
|
|
2373
|
-
/** @description The name of the custom tool to call. */
|
|
2374
|
-
name: string;
|
|
2375
|
-
/** @description The input for the custom tool call generated by the model. */
|
|
2376
|
-
input: string;
|
|
2377
|
-
};
|
|
2378
|
-
CustomToolChatCompletions: {
|
|
2379
|
-
custom: components["schemas"]["CustomToolProperties"];
|
|
2380
|
-
};
|
|
2381
|
-
CustomToolProperties: {
|
|
2382
|
-
/** @description The name of the custom tool, used to identify it in tool calls. */
|
|
2383
|
-
name: string;
|
|
2384
|
-
/** @description Optional description of the custom tool, used to provide more context. */
|
|
2385
|
-
description?: string | null;
|
|
2386
|
-
/** @description The input format for the custom tool. Default is unconstrained text. */
|
|
2387
|
-
format: components["schemas"]["CustomToolPropertiesFormat"];
|
|
2388
|
-
};
|
|
2389
|
-
CustomToolPropertiesFormat: {
|
|
2390
|
-
/** @enum {string} */
|
|
2391
|
-
type: "text";
|
|
2392
|
-
} | {
|
|
2393
|
-
grammar: components["schemas"]["CustomGrammarFormatParam"];
|
|
2394
|
-
/** @enum {string} */
|
|
2395
|
-
type: "grammar";
|
|
2396
|
-
};
|
|
2397
1633
|
/** @description Dashboard user information from a validated dashboard session token */
|
|
2398
1634
|
DashboardUser: {
|
|
2399
1635
|
user_id: string;
|
|
@@ -2422,7 +1658,6 @@ export interface components {
|
|
|
2422
1658
|
};
|
|
2423
1659
|
/** @enum {string} */
|
|
2424
1660
|
DownloadStatus: "pending" | "completed" | "error";
|
|
2425
|
-
Duration: string;
|
|
2426
1661
|
DynamicRegisterRequest: {
|
|
2427
1662
|
registration_endpoint: string;
|
|
2428
1663
|
redirect_uri: string;
|
|
@@ -2436,70 +1671,6 @@ export interface components {
|
|
|
2436
1671
|
token_endpoint_auth_method?: string | null;
|
|
2437
1672
|
registration_access_token?: string | null;
|
|
2438
1673
|
};
|
|
2439
|
-
/** @description Represents an embedding vector returned by embedding endpoint. */
|
|
2440
|
-
Embedding: {
|
|
2441
|
-
/**
|
|
2442
|
-
* Format: int32
|
|
2443
|
-
* @description The index of the embedding in the list of embeddings.
|
|
2444
|
-
*/
|
|
2445
|
-
index: number;
|
|
2446
|
-
/** @description The object type, which is always "embedding". */
|
|
2447
|
-
object: string;
|
|
2448
|
-
/** @description The embedding vector, which is a list of floats. The length of vector
|
|
2449
|
-
* depends on the model as listed in the [embedding guide](https://platform.openai.com/docs/guides/embeddings). */
|
|
2450
|
-
embedding: number[];
|
|
2451
|
-
};
|
|
2452
|
-
EmbeddingInput: string | string[] | number[] | number[][];
|
|
2453
|
-
EmbeddingUsage: {
|
|
2454
|
-
/**
|
|
2455
|
-
* Format: int32
|
|
2456
|
-
* @description The number of tokens used by the prompt.
|
|
2457
|
-
*/
|
|
2458
|
-
prompt_tokens: number;
|
|
2459
|
-
/**
|
|
2460
|
-
* Format: int32
|
|
2461
|
-
* @description The total number of tokens used by the request.
|
|
2462
|
-
*/
|
|
2463
|
-
total_tokens: number;
|
|
2464
|
-
};
|
|
2465
|
-
/** @enum {string} */
|
|
2466
|
-
EncodingFormat: "float" | "base64";
|
|
2467
|
-
/** @example {
|
|
2468
|
-
* "code": "validation_error",
|
|
2469
|
-
* "message": "Validation failed: name is required",
|
|
2470
|
-
* "param": {
|
|
2471
|
-
* "field": "name",
|
|
2472
|
-
* "value": "invalid"
|
|
2473
|
-
* },
|
|
2474
|
-
* "type": "invalid_request_error"
|
|
2475
|
-
* } */
|
|
2476
|
-
ErrorBody: {
|
|
2477
|
-
/**
|
|
2478
|
-
* @description Human-readable error message describing what went wrong
|
|
2479
|
-
* @example Validation failed: name is required
|
|
2480
|
-
*/
|
|
2481
|
-
message: string;
|
|
2482
|
-
/**
|
|
2483
|
-
* @description Error type categorizing the kind of error that occurred
|
|
2484
|
-
* @example invalid_request_error
|
|
2485
|
-
*/
|
|
2486
|
-
type: string;
|
|
2487
|
-
/**
|
|
2488
|
-
* @description Specific error code for programmatic error handling
|
|
2489
|
-
* @example validation_error
|
|
2490
|
-
*/
|
|
2491
|
-
code?: string | null;
|
|
2492
|
-
/**
|
|
2493
|
-
* @description Additional error parameters as key-value pairs (for validation errors)
|
|
2494
|
-
* @example {
|
|
2495
|
-
* "field": "name",
|
|
2496
|
-
* "value": "invalid"
|
|
2497
|
-
* }
|
|
2498
|
-
*/
|
|
2499
|
-
param?: {
|
|
2500
|
-
[key: string]: string;
|
|
2501
|
-
} | null;
|
|
2502
|
-
};
|
|
2503
1674
|
/**
|
|
2504
1675
|
* @description Request to fetch available models from provider
|
|
2505
1676
|
* @example {
|
|
@@ -2529,71 +1700,8 @@ export interface components {
|
|
|
2529
1700
|
FetchModelsResponse: {
|
|
2530
1701
|
models: string[];
|
|
2531
1702
|
};
|
|
2532
|
-
FileObject: {
|
|
2533
|
-
/** @description The base64 encoded file data, used when passing the file to the model
|
|
2534
|
-
* as a string. */
|
|
2535
|
-
file_data?: string | null;
|
|
2536
|
-
/** @description The ID of an uploaded file to use as input. */
|
|
2537
|
-
file_id?: string | null;
|
|
2538
|
-
/** @description The name of the file, used when passing the file to the model as a
|
|
2539
|
-
* string. */
|
|
2540
|
-
filename?: string | null;
|
|
2541
|
-
};
|
|
2542
|
-
/** @enum {string} */
|
|
2543
|
-
FinishReason: "stop" | "length" | "tool_calls" | "content_filter" | "function_call";
|
|
2544
1703
|
/** @enum {string} */
|
|
2545
1704
|
FlowType: "redirect" | "popup";
|
|
2546
|
-
/** @description The name and arguments of a function that should be called, as generated by the model. */
|
|
2547
|
-
FunctionCall: {
|
|
2548
|
-
/** @description The name of the function to call. */
|
|
2549
|
-
name: string;
|
|
2550
|
-
/** @description The arguments to call the function with, as generated by the model in JSON format. Note that the model does not always generate valid JSON, and may hallucinate parameters not defined by your function schema. Validate the arguments in your code before calling your function. */
|
|
2551
|
-
arguments: string;
|
|
2552
|
-
};
|
|
2553
|
-
FunctionCallStream: {
|
|
2554
|
-
/** @description The name of the function to call. */
|
|
2555
|
-
name?: string | null;
|
|
2556
|
-
/** @description The arguments to call the function with, as generated by the model in JSON format.
|
|
2557
|
-
* Note that the model does not always generate valid JSON, and may hallucinate
|
|
2558
|
-
* parameters not defined by your function schema. Validate the arguments in your
|
|
2559
|
-
* code before calling your function. */
|
|
2560
|
-
arguments?: string | null;
|
|
2561
|
-
};
|
|
2562
|
-
FunctionName: {
|
|
2563
|
-
/** @description The name of the function to call. */
|
|
2564
|
-
name: string;
|
|
2565
|
-
};
|
|
2566
|
-
FunctionObject: {
|
|
2567
|
-
/** @description The name of the function to be called. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 64. */
|
|
2568
|
-
name: string;
|
|
2569
|
-
/** @description A description of what the function does, used by the model to choose when and how to call the function. */
|
|
2570
|
-
description?: string | null;
|
|
2571
|
-
/** @description The parameters the functions accepts, described as a JSON Schema object. See the [guide](https://platform.openai.com/docs/guides/text-generation/function-calling) for examples, and the [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for documentation about the format.
|
|
2572
|
-
*
|
|
2573
|
-
* Omitting `parameters` defines a function with an empty parameter list. */
|
|
2574
|
-
parameters?: unknown;
|
|
2575
|
-
/** @description Whether to enable strict schema adherence when generating the function call. If set to true, the model will follow the exact schema defined in the `parameters` field. Only a subset of JSON Schema is supported when `strict` is `true`. Learn more about Structured Outputs in the [function calling guide](https://platform.openai.com/docs/guides/function-calling). */
|
|
2576
|
-
strict?: boolean | null;
|
|
2577
|
-
};
|
|
2578
|
-
/** @enum {string} */
|
|
2579
|
-
FunctionType: "function";
|
|
2580
|
-
/** @enum {string} */
|
|
2581
|
-
GrammarSyntax: "lark" | "regex";
|
|
2582
|
-
/** @enum {string} */
|
|
2583
|
-
ImageDetail: "auto" | "low" | "high";
|
|
2584
|
-
ImageUrl: {
|
|
2585
|
-
/** @description Either a URL of the image or the base64 encoded image data. */
|
|
2586
|
-
url: string;
|
|
2587
|
-
detail?: null | components["schemas"]["ImageDetail"];
|
|
2588
|
-
};
|
|
2589
|
-
InputAudio: {
|
|
2590
|
-
/** @description Base64 encoded audio data. */
|
|
2591
|
-
data: string;
|
|
2592
|
-
/** @description The format of the encoded audio data. Currently supports "wav" and "mp3". */
|
|
2593
|
-
format: components["schemas"]["InputAudioFormat"];
|
|
2594
|
-
};
|
|
2595
|
-
/** @enum {string} */
|
|
2596
|
-
InputAudioFormat: "wav" | "mp3";
|
|
2597
1705
|
JsonVec: string[];
|
|
2598
1706
|
ListMcpServersResponse: {
|
|
2599
1707
|
mcp_servers: components["schemas"]["McpServerResponse"][];
|
|
@@ -2601,10 +1709,6 @@ export interface components {
|
|
|
2601
1709
|
ListMcpsResponse: {
|
|
2602
1710
|
mcps: components["schemas"]["Mcp"][];
|
|
2603
1711
|
};
|
|
2604
|
-
ListModelResponse: {
|
|
2605
|
-
object: string;
|
|
2606
|
-
data: components["schemas"]["Model"][];
|
|
2607
|
-
};
|
|
2608
1712
|
/** @description List users query parameters. Intentionally omits sort fields (unlike PaginationSortParams)
|
|
2609
1713
|
* because user listing is fetched from the auth service which handles its own ordering. */
|
|
2610
1714
|
ListUsersParams: {
|
|
@@ -2824,32 +1928,6 @@ export interface components {
|
|
|
2824
1928
|
/** @description User's MCP instances connected to this server URL */
|
|
2825
1929
|
instances: components["schemas"]["Mcp"][];
|
|
2826
1930
|
};
|
|
2827
|
-
Message: {
|
|
2828
|
-
role: string;
|
|
2829
|
-
content: string;
|
|
2830
|
-
images?: string[] | null;
|
|
2831
|
-
};
|
|
2832
|
-
/** @description Set of 16 key-value pairs that can be attached to an object.
|
|
2833
|
-
* This can be useful for storing additional information about the
|
|
2834
|
-
* object in a structured format, and querying for objects via API
|
|
2835
|
-
* or the dashboard. Keys are strings with a maximum length of 64
|
|
2836
|
-
* characters. Values are strings with a maximum length of 512
|
|
2837
|
-
* characters. */
|
|
2838
|
-
Metadata: unknown;
|
|
2839
|
-
/** @description Describes an OpenAI model offering that can be used with the API. */
|
|
2840
|
-
Model: {
|
|
2841
|
-
/** @description The model identifier, which can be referenced in the API endpoints. */
|
|
2842
|
-
id: string;
|
|
2843
|
-
/** @description The object type, which is always "model". */
|
|
2844
|
-
object: string;
|
|
2845
|
-
/**
|
|
2846
|
-
* Format: int32
|
|
2847
|
-
* @description The Unix timestamp (in seconds) when the model was created.
|
|
2848
|
-
*/
|
|
2849
|
-
created: number;
|
|
2850
|
-
/** @description The organization that owns the model. */
|
|
2851
|
-
owned_by: string;
|
|
2852
|
-
};
|
|
2853
1931
|
ModelAlias: {
|
|
2854
1932
|
alias: string;
|
|
2855
1933
|
/** Format: string */
|
|
@@ -2879,14 +1957,6 @@ export interface components {
|
|
|
2879
1957
|
thinking?: boolean | null;
|
|
2880
1958
|
tools: components["schemas"]["ToolCapabilities"];
|
|
2881
1959
|
};
|
|
2882
|
-
ModelDetails: {
|
|
2883
|
-
parent_model?: string | null;
|
|
2884
|
-
format: string;
|
|
2885
|
-
family: string;
|
|
2886
|
-
families?: string[] | null;
|
|
2887
|
-
parameter_size: string;
|
|
2888
|
-
quantization_level: string;
|
|
2889
|
-
};
|
|
2890
1960
|
/** @description Model metadata for API responses */
|
|
2891
1961
|
ModelMetadata: {
|
|
2892
1962
|
capabilities: components["schemas"]["ModelCapabilities"];
|
|
@@ -2894,9 +1964,6 @@ export interface components {
|
|
|
2894
1964
|
architecture: components["schemas"]["ModelArchitecture"];
|
|
2895
1965
|
chat_template?: string | null;
|
|
2896
1966
|
};
|
|
2897
|
-
ModelsResponse: {
|
|
2898
|
-
models: components["schemas"]["OllamaModel"][];
|
|
2899
|
-
};
|
|
2900
1967
|
/**
|
|
2901
1968
|
* @description Request for creating a new download request
|
|
2902
1969
|
* @example {
|
|
@@ -2975,81 +2042,6 @@ export interface components {
|
|
|
2975
2042
|
created_at: string;
|
|
2976
2043
|
updated_at: string;
|
|
2977
2044
|
};
|
|
2978
|
-
OllamaError: {
|
|
2979
|
-
error: string;
|
|
2980
|
-
};
|
|
2981
|
-
OllamaModel: {
|
|
2982
|
-
model: string;
|
|
2983
|
-
/** Format: int32 */
|
|
2984
|
-
modified_at: number;
|
|
2985
|
-
/** Format: int64 */
|
|
2986
|
-
size: number;
|
|
2987
|
-
digest: string;
|
|
2988
|
-
details: components["schemas"]["ModelDetails"];
|
|
2989
|
-
};
|
|
2990
|
-
/** @example {
|
|
2991
|
-
* "error": {
|
|
2992
|
-
* "code": "validation_error",
|
|
2993
|
-
* "message": "Validation failed: name is required",
|
|
2994
|
-
* "param": "name",
|
|
2995
|
-
* "type": "invalid_request_error"
|
|
2996
|
-
* }
|
|
2997
|
-
* } */
|
|
2998
|
-
OpenAIApiError: {
|
|
2999
|
-
/** @description Error details following OpenAI API error format */
|
|
3000
|
-
error: components["schemas"]["ErrorBody"];
|
|
3001
|
-
};
|
|
3002
|
-
Options: {
|
|
3003
|
-
/** Format: int32 */
|
|
3004
|
-
num_keep?: number | null;
|
|
3005
|
-
/** Format: int64 */
|
|
3006
|
-
seed?: number | null;
|
|
3007
|
-
/** Format: int32 */
|
|
3008
|
-
num_predict?: number | null;
|
|
3009
|
-
/** Format: int32 */
|
|
3010
|
-
top_k?: number | null;
|
|
3011
|
-
/** Format: float */
|
|
3012
|
-
top_p?: number | null;
|
|
3013
|
-
/** Format: float */
|
|
3014
|
-
tfs_z?: number | null;
|
|
3015
|
-
/** Format: float */
|
|
3016
|
-
typical_p?: number | null;
|
|
3017
|
-
/** Format: int32 */
|
|
3018
|
-
repeat_last_n?: number | null;
|
|
3019
|
-
/** Format: float */
|
|
3020
|
-
temperature?: number | null;
|
|
3021
|
-
/** Format: float */
|
|
3022
|
-
repeat_penalty?: number | null;
|
|
3023
|
-
/** Format: float */
|
|
3024
|
-
presence_penalty?: number | null;
|
|
3025
|
-
/** Format: float */
|
|
3026
|
-
frequency_penalty?: number | null;
|
|
3027
|
-
/** Format: float */
|
|
3028
|
-
mirostat?: number | null;
|
|
3029
|
-
/** Format: float */
|
|
3030
|
-
mirostat_tau?: number | null;
|
|
3031
|
-
/** Format: float */
|
|
3032
|
-
mirostat_eta?: number | null;
|
|
3033
|
-
penalize_newline?: boolean | null;
|
|
3034
|
-
stop?: string[] | null;
|
|
3035
|
-
numa?: boolean | null;
|
|
3036
|
-
/** Format: int32 */
|
|
3037
|
-
num_ctx?: number | null;
|
|
3038
|
-
/** Format: int32 */
|
|
3039
|
-
num_batch?: number | null;
|
|
3040
|
-
/** Format: int32 */
|
|
3041
|
-
num_gpu?: number | null;
|
|
3042
|
-
/** Format: int32 */
|
|
3043
|
-
main_gpu?: number | null;
|
|
3044
|
-
low_vram?: boolean | null;
|
|
3045
|
-
f16_kv?: boolean | null;
|
|
3046
|
-
logits_all?: boolean | null;
|
|
3047
|
-
vocab_only?: boolean | null;
|
|
3048
|
-
use_mmap?: boolean | null;
|
|
3049
|
-
use_mlock?: boolean | null;
|
|
3050
|
-
/** Format: int32 */
|
|
3051
|
-
num_thread?: number | null;
|
|
3052
|
-
};
|
|
3053
2045
|
/** @description Paginated list of all model aliases (user, model, and API) */
|
|
3054
2046
|
PaginatedAliasResponse: {
|
|
3055
2047
|
data: components["schemas"]["AliasResponse"][];
|
|
@@ -3148,36 +2140,11 @@ export interface components {
|
|
|
3148
2140
|
*/
|
|
3149
2141
|
message: string;
|
|
3150
2142
|
};
|
|
3151
|
-
/** @description Static predicted output content, such as the content of a text file that is being regenerated. */
|
|
3152
|
-
PredictionContent: {
|
|
3153
|
-
/** @description The type of the predicted content you want to provide. This type is
|
|
3154
|
-
* currently always `content`. */
|
|
3155
|
-
content: components["schemas"]["PredictionContentContent"];
|
|
3156
|
-
/** @enum {string} */
|
|
3157
|
-
type: "content";
|
|
3158
|
-
};
|
|
3159
|
-
/** @description The content that should be matched when generating a model response. If generated tokens would match this content, the entire model response can be returned much more quickly. */
|
|
3160
|
-
PredictionContentContent: string | components["schemas"]["ChatCompletionRequestMessageContentPartText"][];
|
|
3161
|
-
/** @description Breakdown of tokens used in a completion. */
|
|
3162
|
-
PromptTokensDetails: {
|
|
3163
|
-
/**
|
|
3164
|
-
* Format: int32
|
|
3165
|
-
* @description Audio input tokens present in the prompt.
|
|
3166
|
-
*/
|
|
3167
|
-
audio_tokens?: number | null;
|
|
3168
|
-
/**
|
|
3169
|
-
* Format: int32
|
|
3170
|
-
* @description Cached tokens present in the prompt.
|
|
3171
|
-
*/
|
|
3172
|
-
cached_tokens?: number | null;
|
|
3173
|
-
};
|
|
3174
2143
|
/** @description Response for queue status operations */
|
|
3175
2144
|
QueueStatusResponse: {
|
|
3176
2145
|
/** @description Queue status ("idle" or "processing") */
|
|
3177
2146
|
status: string;
|
|
3178
2147
|
};
|
|
3179
|
-
/** @enum {string} */
|
|
3180
|
-
ReasoningEffort: "none" | "minimal" | "low" | "medium" | "high" | "xhigh";
|
|
3181
2148
|
/** @example {
|
|
3182
2149
|
* "location": "https://oauth.example.com/auth?client_id=test&redirect_uri=..."
|
|
3183
2150
|
* } */
|
|
@@ -3242,46 +2209,6 @@ export interface components {
|
|
|
3242
2209
|
};
|
|
3243
2210
|
/** @enum {string} */
|
|
3244
2211
|
ResourceRole: "resource_anonymous" | "resource_guest" | "resource_user" | "resource_power_user" | "resource_manager" | "resource_admin";
|
|
3245
|
-
ResponseFormat: {
|
|
3246
|
-
/** @enum {string} */
|
|
3247
|
-
type: "text";
|
|
3248
|
-
} | {
|
|
3249
|
-
/** @enum {string} */
|
|
3250
|
-
type: "json_object";
|
|
3251
|
-
} | {
|
|
3252
|
-
json_schema: components["schemas"]["ResponseFormatJsonSchema"];
|
|
3253
|
-
/** @enum {string} */
|
|
3254
|
-
type: "json_schema";
|
|
3255
|
-
};
|
|
3256
|
-
ResponseFormatJsonSchema: {
|
|
3257
|
-
/** @description A description of what the response format is for, used by the model to determine how to respond in the format. */
|
|
3258
|
-
description?: string | null;
|
|
3259
|
-
/** @description The name of the response format. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 64. */
|
|
3260
|
-
name: string;
|
|
3261
|
-
/** @description The schema for the response format, described as a JSON Schema object.
|
|
3262
|
-
* Learn how to build JSON schemas [here](https://json-schema.org/). */
|
|
3263
|
-
schema?: unknown;
|
|
3264
|
-
/** @description Whether to enable strict schema adherence when generating the output.
|
|
3265
|
-
* If set to true, the model will always follow the exact schema defined
|
|
3266
|
-
* in the `schema` field. Only a subset of JSON Schema is supported when
|
|
3267
|
-
* `strict` is `true`. To learn more, read the [Structured Outputs
|
|
3268
|
-
* guide](https://platform.openai.com/docs/guides/structured-outputs). */
|
|
3269
|
-
strict?: boolean | null;
|
|
3270
|
-
};
|
|
3271
|
-
/**
|
|
3272
|
-
* @description Output types that you would like the model to generate for this request.
|
|
3273
|
-
*
|
|
3274
|
-
* Most models are capable of generating text, which is the default: `["text"]`
|
|
3275
|
-
*
|
|
3276
|
-
* The `gpt-4o-audio-preview` model can also be used to [generate
|
|
3277
|
-
* audio](https://platform.openai.com/docs/guides/audio). To request that this model generate both text and audio responses, you can use: `["text", "audio"]`
|
|
3278
|
-
* @enum {string}
|
|
3279
|
-
*/
|
|
3280
|
-
ResponseModalities: "text" | "audio";
|
|
3281
|
-
/** @enum {string} */
|
|
3282
|
-
Role: "system" | "user" | "assistant" | "tool" | "function";
|
|
3283
|
-
/** @enum {string} */
|
|
3284
|
-
ServiceTier: "auto" | "default" | "flex" | "scale" | "priority";
|
|
3285
2212
|
SettingInfo: {
|
|
3286
2213
|
key: string;
|
|
3287
2214
|
current_value: unknown;
|
|
@@ -3338,22 +2265,6 @@ export interface components {
|
|
|
3338
2265
|
/** @description New application status after successful setup */
|
|
3339
2266
|
status: components["schemas"]["AppStatus"];
|
|
3340
2267
|
};
|
|
3341
|
-
ShowRequest: {
|
|
3342
|
-
name: string;
|
|
3343
|
-
};
|
|
3344
|
-
ShowResponse: {
|
|
3345
|
-
details: components["schemas"]["ModelDetails"];
|
|
3346
|
-
license: string;
|
|
3347
|
-
model_info: {
|
|
3348
|
-
[key: string]: unknown;
|
|
3349
|
-
};
|
|
3350
|
-
modelfile: string;
|
|
3351
|
-
/** Format: int32 */
|
|
3352
|
-
modified_at: number;
|
|
3353
|
-
parameters: string;
|
|
3354
|
-
template: string;
|
|
3355
|
-
};
|
|
3356
|
-
StopConfiguration: string | string[];
|
|
3357
2268
|
TenantListItem: {
|
|
3358
2269
|
client_id: string;
|
|
3359
2270
|
name: string;
|
|
@@ -3398,6 +2309,8 @@ export interface components {
|
|
|
3398
2309
|
model: string;
|
|
3399
2310
|
/** @description Test prompt (max 30 characters for cost control) */
|
|
3400
2311
|
prompt: string;
|
|
2312
|
+
/** @description API format to use for the test request (defaults to OpenAI Chat Completions) */
|
|
2313
|
+
api_format?: components["schemas"]["ApiFormat"];
|
|
3401
2314
|
};
|
|
3402
2315
|
/**
|
|
3403
2316
|
* @description Response from testing API connectivity
|
|
@@ -3446,21 +2359,6 @@ export interface components {
|
|
|
3446
2359
|
function_calling?: boolean | null;
|
|
3447
2360
|
structured_output?: boolean | null;
|
|
3448
2361
|
};
|
|
3449
|
-
/** @enum {string} */
|
|
3450
|
-
ToolChoiceAllowedMode: "auto" | "required";
|
|
3451
|
-
/** @enum {string} */
|
|
3452
|
-
ToolChoiceOptions: "none" | "auto" | "required";
|
|
3453
|
-
TopLogprobs: {
|
|
3454
|
-
/** @description The token. */
|
|
3455
|
-
token: string;
|
|
3456
|
-
/**
|
|
3457
|
-
* Format: float
|
|
3458
|
-
* @description The log probability of this token.
|
|
3459
|
-
*/
|
|
3460
|
-
logprob: number;
|
|
3461
|
-
/** @description A list of integers representing the UTF-8 bytes representation of the token. Useful in instances where characters are represented by multiple tokens and their byte representations must be combined to generate the correct text representation. Can be `null` if there is no bytes representation for the token. */
|
|
3462
|
-
bytes?: number[] | null;
|
|
3463
|
-
};
|
|
3464
2362
|
/**
|
|
3465
2363
|
* @description Request to update a setting value
|
|
3466
2364
|
* @example {
|
|
@@ -3484,22 +2382,6 @@ export interface components {
|
|
|
3484
2382
|
/** @description New status for the token (active/inactive) */
|
|
3485
2383
|
status: components["schemas"]["TokenStatus"];
|
|
3486
2384
|
};
|
|
3487
|
-
UrlCitation: {
|
|
3488
|
-
/**
|
|
3489
|
-
* Format: int32
|
|
3490
|
-
* @description The index of the last character of the URL citation in the message.
|
|
3491
|
-
*/
|
|
3492
|
-
end_index: number;
|
|
3493
|
-
/**
|
|
3494
|
-
* Format: int32
|
|
3495
|
-
* @description The index of the first character of the URL citation in the message.
|
|
3496
|
-
*/
|
|
3497
|
-
start_index: number;
|
|
3498
|
-
/** @description The title of the web resource. */
|
|
3499
|
-
title: string;
|
|
3500
|
-
/** @description The URL of the web resource. */
|
|
3501
|
-
url: string;
|
|
3502
|
-
};
|
|
3503
2385
|
/** @description User access request output type for API responses */
|
|
3504
2386
|
UserAccessRequest: {
|
|
3505
2387
|
id: string;
|
|
@@ -3664,38 +2546,6 @@ export interface components {
|
|
|
3664
2546
|
});
|
|
3665
2547
|
/** @enum {string} */
|
|
3666
2548
|
UserScope: "scope_user_user" | "scope_user_power_user";
|
|
3667
|
-
/**
|
|
3668
|
-
* @description Constrains the verbosity of the model's response. Lower values will result in more concise responses, while higher values will result in more verbose responses. Currently supported values are `low`, `medium`, and `high`.
|
|
3669
|
-
* @enum {string}
|
|
3670
|
-
*/
|
|
3671
|
-
Verbosity: "low" | "medium" | "high";
|
|
3672
|
-
/**
|
|
3673
|
-
* @description The amount of context window space to use for the search.
|
|
3674
|
-
* @enum {string}
|
|
3675
|
-
*/
|
|
3676
|
-
WebSearchContextSize: "low" | "medium" | "high";
|
|
3677
|
-
/** @description Approximate location parameters for the search. */
|
|
3678
|
-
WebSearchLocation: {
|
|
3679
|
-
/** @description The two-letter [ISO country code](https://en.wikipedia.org/wiki/ISO_3166-1) of the user, e.g. `US`. */
|
|
3680
|
-
country?: string | null;
|
|
3681
|
-
/** @description Free text input for the region of the user, e.g. `California`. */
|
|
3682
|
-
region?: string | null;
|
|
3683
|
-
/** @description Free text input for the city of the user, e.g. `San Francisco`. */
|
|
3684
|
-
city?: string | null;
|
|
3685
|
-
/** @description The [IANA timezone](https://timeapi.io/documentation/iana-timezones) of the user, e.g. `America/Los_Angeles`. */
|
|
3686
|
-
timezone?: string | null;
|
|
3687
|
-
};
|
|
3688
|
-
/** @description Options for the web search tool. */
|
|
3689
|
-
WebSearchOptions: {
|
|
3690
|
-
search_context_size?: null | components["schemas"]["WebSearchContextSize"];
|
|
3691
|
-
user_location?: null | components["schemas"]["WebSearchUserLocation"];
|
|
3692
|
-
};
|
|
3693
|
-
WebSearchUserLocation: {
|
|
3694
|
-
type: components["schemas"]["WebSearchUserLocationType"];
|
|
3695
|
-
approximate: components["schemas"]["WebSearchLocation"];
|
|
3696
|
-
};
|
|
3697
|
-
/** @enum {string} */
|
|
3698
|
-
WebSearchUserLocationType: "approximate";
|
|
3699
2549
|
};
|
|
3700
2550
|
responses: never;
|
|
3701
2551
|
parameters: never;
|
|
@@ -3705,62 +2555,31 @@ export interface components {
|
|
|
3705
2555
|
}
|
|
3706
2556
|
export type $defs = Record<string, never>;
|
|
3707
2557
|
export interface operations {
|
|
3708
|
-
|
|
2558
|
+
listAllAccessRequests: {
|
|
3709
2559
|
parameters: {
|
|
3710
|
-
query?:
|
|
2560
|
+
query?: {
|
|
2561
|
+
/** @description Page number (1-based indexing) */
|
|
2562
|
+
page?: number;
|
|
2563
|
+
/** @description Number of items to return per page (maximum 100) */
|
|
2564
|
+
page_size?: number;
|
|
2565
|
+
/** @description Field to sort by. Common values: repo, filename, size, updated_at, snapshot, created_at */
|
|
2566
|
+
sort?: string;
|
|
2567
|
+
/** @description Sort order: 'asc' for ascending, 'desc' for descending */
|
|
2568
|
+
sort_order?: string;
|
|
2569
|
+
};
|
|
3711
2570
|
header?: never;
|
|
3712
2571
|
path?: never;
|
|
3713
2572
|
cookie?: never;
|
|
3714
2573
|
};
|
|
3715
|
-
|
|
3716
|
-
requestBody: {
|
|
3717
|
-
content: {
|
|
3718
|
-
/** @example {
|
|
3719
|
-
* "messages": [
|
|
3720
|
-
* {
|
|
3721
|
-
* "content": "You are a helpful assistant.",
|
|
3722
|
-
* "role": "system"
|
|
3723
|
-
* },
|
|
3724
|
-
* {
|
|
3725
|
-
* "content": "Hello!",
|
|
3726
|
-
* "role": "user"
|
|
3727
|
-
* }
|
|
3728
|
-
* ],
|
|
3729
|
-
* "model": "llama2:chat",
|
|
3730
|
-
* "options": {
|
|
3731
|
-
* "num_predict": 100,
|
|
3732
|
-
* "temperature": 0.7
|
|
3733
|
-
* },
|
|
3734
|
-
* "stream": true
|
|
3735
|
-
* } */
|
|
3736
|
-
"application/json": components["schemas"]["ChatRequest"];
|
|
3737
|
-
};
|
|
3738
|
-
};
|
|
2574
|
+
requestBody?: never;
|
|
3739
2575
|
responses: {
|
|
3740
|
-
/** @description
|
|
2576
|
+
/** @description All requests retrieved */
|
|
3741
2577
|
200: {
|
|
3742
2578
|
headers: {
|
|
3743
2579
|
[name: string]: unknown;
|
|
3744
2580
|
};
|
|
3745
2581
|
content: {
|
|
3746
|
-
|
|
3747
|
-
* "created_at": "2024-01-20T12:00:00.000000000Z",
|
|
3748
|
-
* "done": true,
|
|
3749
|
-
* "done_reason": "stop",
|
|
3750
|
-
* "eval_count": 10,
|
|
3751
|
-
* "eval_duration": "-1",
|
|
3752
|
-
* "load_duration": "-1",
|
|
3753
|
-
* "message": {
|
|
3754
|
-
* "content": "Hello! How can I help you today?",
|
|
3755
|
-
* "images": null,
|
|
3756
|
-
* "role": "assistant"
|
|
3757
|
-
* },
|
|
3758
|
-
* "model": "llama2:chat",
|
|
3759
|
-
* "prompt_eval_count": 20,
|
|
3760
|
-
* "prompt_eval_duration": "-1",
|
|
3761
|
-
* "total_duration": 0
|
|
3762
|
-
* } */
|
|
3763
|
-
"application/json": unknown;
|
|
2582
|
+
"application/json": components["schemas"]["PaginatedUserAccessResponse"];
|
|
3764
2583
|
};
|
|
3765
2584
|
};
|
|
3766
2585
|
/** @description Invalid request parameters */
|
|
@@ -3769,7 +2588,7 @@ export interface operations {
|
|
|
3769
2588
|
[name: string]: unknown;
|
|
3770
2589
|
};
|
|
3771
2590
|
content: {
|
|
3772
|
-
"application/json": components["schemas"]["
|
|
2591
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
3773
2592
|
};
|
|
3774
2593
|
};
|
|
3775
2594
|
/** @description Not authenticated */
|
|
@@ -3778,7 +2597,7 @@ export interface operations {
|
|
|
3778
2597
|
[name: string]: unknown;
|
|
3779
2598
|
};
|
|
3780
2599
|
content: {
|
|
3781
|
-
"application/json": components["schemas"]["
|
|
2600
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
3782
2601
|
};
|
|
3783
2602
|
};
|
|
3784
2603
|
/** @description Insufficient permissions */
|
|
@@ -3787,111 +2606,7 @@ export interface operations {
|
|
|
3787
2606
|
[name: string]: unknown;
|
|
3788
2607
|
};
|
|
3789
2608
|
content: {
|
|
3790
|
-
"application/json": components["schemas"]["
|
|
3791
|
-
};
|
|
3792
|
-
};
|
|
3793
|
-
/** @description Model not found */
|
|
3794
|
-
404: {
|
|
3795
|
-
headers: {
|
|
3796
|
-
[name: string]: unknown;
|
|
3797
|
-
};
|
|
3798
|
-
content: {
|
|
3799
|
-
/** @example {
|
|
3800
|
-
* "error": "model not found"
|
|
3801
|
-
* } */
|
|
3802
|
-
"application/json": components["schemas"]["OllamaError"];
|
|
3803
|
-
};
|
|
3804
|
-
};
|
|
3805
|
-
/** @description Internal server error */
|
|
3806
|
-
500: {
|
|
3807
|
-
headers: {
|
|
3808
|
-
[name: string]: unknown;
|
|
3809
|
-
};
|
|
3810
|
-
content: {
|
|
3811
|
-
"application/json": components["schemas"]["OpenAIApiError"];
|
|
3812
|
-
};
|
|
3813
|
-
};
|
|
3814
|
-
};
|
|
3815
|
-
};
|
|
3816
|
-
showOllamaModel: {
|
|
3817
|
-
parameters: {
|
|
3818
|
-
query?: never;
|
|
3819
|
-
header?: never;
|
|
3820
|
-
path?: never;
|
|
3821
|
-
cookie?: never;
|
|
3822
|
-
};
|
|
3823
|
-
/** @description Model name to get details for */
|
|
3824
|
-
requestBody: {
|
|
3825
|
-
content: {
|
|
3826
|
-
/** @example {
|
|
3827
|
-
* "name": "llama2:chat"
|
|
3828
|
-
* } */
|
|
3829
|
-
"application/json": components["schemas"]["ShowRequest"];
|
|
3830
|
-
};
|
|
3831
|
-
};
|
|
3832
|
-
responses: {
|
|
3833
|
-
/** @description Model details */
|
|
3834
|
-
200: {
|
|
3835
|
-
headers: {
|
|
3836
|
-
[name: string]: unknown;
|
|
3837
|
-
};
|
|
3838
|
-
content: {
|
|
3839
|
-
/** @example {
|
|
3840
|
-
* "details": {
|
|
3841
|
-
* "families": null,
|
|
3842
|
-
* "family": "unknown",
|
|
3843
|
-
* "format": "gguf",
|
|
3844
|
-
* "parameter_size": "",
|
|
3845
|
-
* "parent_model": null,
|
|
3846
|
-
* "quantization_level": ""
|
|
3847
|
-
* },
|
|
3848
|
-
* "license": "",
|
|
3849
|
-
* "model_info": {},
|
|
3850
|
-
* "modelfile": "",
|
|
3851
|
-
* "modified_at": "2024-01-20T12:00:00.000000000Z",
|
|
3852
|
-
* "parameters": "n_keep: 24\nstop:\n- <|start_header_id|>\n- <|end_header_id|>\n- <|eot_id|>\n",
|
|
3853
|
-
* "template": "llama2"
|
|
3854
|
-
* } */
|
|
3855
|
-
"application/json": components["schemas"]["ShowResponse"];
|
|
3856
|
-
};
|
|
3857
|
-
};
|
|
3858
|
-
/** @description Invalid request parameters */
|
|
3859
|
-
400: {
|
|
3860
|
-
headers: {
|
|
3861
|
-
[name: string]: unknown;
|
|
3862
|
-
};
|
|
3863
|
-
content: {
|
|
3864
|
-
"application/json": components["schemas"]["OpenAIApiError"];
|
|
3865
|
-
};
|
|
3866
|
-
};
|
|
3867
|
-
/** @description Not authenticated */
|
|
3868
|
-
401: {
|
|
3869
|
-
headers: {
|
|
3870
|
-
[name: string]: unknown;
|
|
3871
|
-
};
|
|
3872
|
-
content: {
|
|
3873
|
-
"application/json": components["schemas"]["OpenAIApiError"];
|
|
3874
|
-
};
|
|
3875
|
-
};
|
|
3876
|
-
/** @description Insufficient permissions */
|
|
3877
|
-
403: {
|
|
3878
|
-
headers: {
|
|
3879
|
-
[name: string]: unknown;
|
|
3880
|
-
};
|
|
3881
|
-
content: {
|
|
3882
|
-
"application/json": components["schemas"]["OpenAIApiError"];
|
|
3883
|
-
};
|
|
3884
|
-
};
|
|
3885
|
-
/** @description Model not found */
|
|
3886
|
-
404: {
|
|
3887
|
-
headers: {
|
|
3888
|
-
[name: string]: unknown;
|
|
3889
|
-
};
|
|
3890
|
-
content: {
|
|
3891
|
-
/** @example {
|
|
3892
|
-
* "error": "model not found"
|
|
3893
|
-
* } */
|
|
3894
|
-
"application/json": components["schemas"]["OllamaError"];
|
|
2609
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
3895
2610
|
};
|
|
3896
2611
|
};
|
|
3897
2612
|
/** @description Internal server error */
|
|
@@ -3900,146 +2615,7 @@ export interface operations {
|
|
|
3900
2615
|
[name: string]: unknown;
|
|
3901
2616
|
};
|
|
3902
2617
|
content: {
|
|
3903
|
-
"application/json": components["schemas"]["
|
|
3904
|
-
};
|
|
3905
|
-
};
|
|
3906
|
-
};
|
|
3907
|
-
};
|
|
3908
|
-
listOllamaModels: {
|
|
3909
|
-
parameters: {
|
|
3910
|
-
query?: never;
|
|
3911
|
-
header?: never;
|
|
3912
|
-
path?: never;
|
|
3913
|
-
cookie?: never;
|
|
3914
|
-
};
|
|
3915
|
-
requestBody?: never;
|
|
3916
|
-
responses: {
|
|
3917
|
-
/** @description List of available models */
|
|
3918
|
-
200: {
|
|
3919
|
-
headers: {
|
|
3920
|
-
[name: string]: unknown;
|
|
3921
|
-
};
|
|
3922
|
-
content: {
|
|
3923
|
-
/** @example {
|
|
3924
|
-
* "models": [
|
|
3925
|
-
* {
|
|
3926
|
-
* "details": {
|
|
3927
|
-
* "families": null,
|
|
3928
|
-
* "family": "unknown",
|
|
3929
|
-
* "format": "gguf",
|
|
3930
|
-
* "parameter_size": "",
|
|
3931
|
-
* "parent_model": null,
|
|
3932
|
-
* "quantization_level": ""
|
|
3933
|
-
* },
|
|
3934
|
-
* "digest": "sha256:abc123",
|
|
3935
|
-
* "model": "llama2:chat",
|
|
3936
|
-
* "modified_at": "2024-01-20T12:00:00.000000000Z",
|
|
3937
|
-
* "size": 0
|
|
3938
|
-
* }
|
|
3939
|
-
* ]
|
|
3940
|
-
* } */
|
|
3941
|
-
"application/json": components["schemas"]["ModelsResponse"];
|
|
3942
|
-
};
|
|
3943
|
-
};
|
|
3944
|
-
/** @description Invalid request parameters */
|
|
3945
|
-
400: {
|
|
3946
|
-
headers: {
|
|
3947
|
-
[name: string]: unknown;
|
|
3948
|
-
};
|
|
3949
|
-
content: {
|
|
3950
|
-
"application/json": components["schemas"]["OpenAIApiError"];
|
|
3951
|
-
};
|
|
3952
|
-
};
|
|
3953
|
-
/** @description Not authenticated */
|
|
3954
|
-
401: {
|
|
3955
|
-
headers: {
|
|
3956
|
-
[name: string]: unknown;
|
|
3957
|
-
};
|
|
3958
|
-
content: {
|
|
3959
|
-
"application/json": components["schemas"]["OpenAIApiError"];
|
|
3960
|
-
};
|
|
3961
|
-
};
|
|
3962
|
-
/** @description Insufficient permissions */
|
|
3963
|
-
403: {
|
|
3964
|
-
headers: {
|
|
3965
|
-
[name: string]: unknown;
|
|
3966
|
-
};
|
|
3967
|
-
content: {
|
|
3968
|
-
"application/json": components["schemas"]["OpenAIApiError"];
|
|
3969
|
-
};
|
|
3970
|
-
};
|
|
3971
|
-
/** @description Internal server error */
|
|
3972
|
-
500: {
|
|
3973
|
-
headers: {
|
|
3974
|
-
[name: string]: unknown;
|
|
3975
|
-
};
|
|
3976
|
-
content: {
|
|
3977
|
-
"application/json": components["schemas"]["OpenAIApiError"];
|
|
3978
|
-
};
|
|
3979
|
-
};
|
|
3980
|
-
};
|
|
3981
|
-
};
|
|
3982
|
-
listAllAccessRequests: {
|
|
3983
|
-
parameters: {
|
|
3984
|
-
query?: {
|
|
3985
|
-
/** @description Page number (1-based indexing) */
|
|
3986
|
-
page?: number;
|
|
3987
|
-
/** @description Number of items to return per page (maximum 100) */
|
|
3988
|
-
page_size?: number;
|
|
3989
|
-
/** @description Field to sort by. Common values: repo, filename, size, updated_at, snapshot, created_at */
|
|
3990
|
-
sort?: string;
|
|
3991
|
-
/** @description Sort order: 'asc' for ascending, 'desc' for descending */
|
|
3992
|
-
sort_order?: string;
|
|
3993
|
-
};
|
|
3994
|
-
header?: never;
|
|
3995
|
-
path?: never;
|
|
3996
|
-
cookie?: never;
|
|
3997
|
-
};
|
|
3998
|
-
requestBody?: never;
|
|
3999
|
-
responses: {
|
|
4000
|
-
/** @description All requests retrieved */
|
|
4001
|
-
200: {
|
|
4002
|
-
headers: {
|
|
4003
|
-
[name: string]: unknown;
|
|
4004
|
-
};
|
|
4005
|
-
content: {
|
|
4006
|
-
"application/json": components["schemas"]["PaginatedUserAccessResponse"];
|
|
4007
|
-
};
|
|
4008
|
-
};
|
|
4009
|
-
/** @description Invalid request parameters */
|
|
4010
|
-
400: {
|
|
4011
|
-
headers: {
|
|
4012
|
-
[name: string]: unknown;
|
|
4013
|
-
};
|
|
4014
|
-
content: {
|
|
4015
|
-
"application/json": components["schemas"]["OpenAIApiError"];
|
|
4016
|
-
};
|
|
4017
|
-
};
|
|
4018
|
-
/** @description Not authenticated */
|
|
4019
|
-
401: {
|
|
4020
|
-
headers: {
|
|
4021
|
-
[name: string]: unknown;
|
|
4022
|
-
};
|
|
4023
|
-
content: {
|
|
4024
|
-
"application/json": components["schemas"]["OpenAIApiError"];
|
|
4025
|
-
};
|
|
4026
|
-
};
|
|
4027
|
-
/** @description Insufficient permissions */
|
|
4028
|
-
403: {
|
|
4029
|
-
headers: {
|
|
4030
|
-
[name: string]: unknown;
|
|
4031
|
-
};
|
|
4032
|
-
content: {
|
|
4033
|
-
"application/json": components["schemas"]["OpenAIApiError"];
|
|
4034
|
-
};
|
|
4035
|
-
};
|
|
4036
|
-
/** @description Internal server error */
|
|
4037
|
-
500: {
|
|
4038
|
-
headers: {
|
|
4039
|
-
[name: string]: unknown;
|
|
4040
|
-
};
|
|
4041
|
-
content: {
|
|
4042
|
-
"application/json": components["schemas"]["OpenAIApiError"];
|
|
2618
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4043
2619
|
};
|
|
4044
2620
|
};
|
|
4045
2621
|
};
|
|
@@ -4077,7 +2653,7 @@ export interface operations {
|
|
|
4077
2653
|
[name: string]: unknown;
|
|
4078
2654
|
};
|
|
4079
2655
|
content: {
|
|
4080
|
-
"application/json": components["schemas"]["
|
|
2656
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4081
2657
|
};
|
|
4082
2658
|
};
|
|
4083
2659
|
/** @description Not authenticated */
|
|
@@ -4086,7 +2662,7 @@ export interface operations {
|
|
|
4086
2662
|
[name: string]: unknown;
|
|
4087
2663
|
};
|
|
4088
2664
|
content: {
|
|
4089
|
-
"application/json": components["schemas"]["
|
|
2665
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4090
2666
|
};
|
|
4091
2667
|
};
|
|
4092
2668
|
/** @description Insufficient permissions */
|
|
@@ -4095,7 +2671,7 @@ export interface operations {
|
|
|
4095
2671
|
[name: string]: unknown;
|
|
4096
2672
|
};
|
|
4097
2673
|
content: {
|
|
4098
|
-
"application/json": components["schemas"]["
|
|
2674
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4099
2675
|
};
|
|
4100
2676
|
};
|
|
4101
2677
|
/** @description Internal server error */
|
|
@@ -4104,7 +2680,7 @@ export interface operations {
|
|
|
4104
2680
|
[name: string]: unknown;
|
|
4105
2681
|
};
|
|
4106
2682
|
content: {
|
|
4107
|
-
"application/json": components["schemas"]["
|
|
2683
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4108
2684
|
};
|
|
4109
2685
|
};
|
|
4110
2686
|
};
|
|
@@ -4141,7 +2717,7 @@ export interface operations {
|
|
|
4141
2717
|
[name: string]: unknown;
|
|
4142
2718
|
};
|
|
4143
2719
|
content: {
|
|
4144
|
-
"application/json": components["schemas"]["
|
|
2720
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4145
2721
|
};
|
|
4146
2722
|
};
|
|
4147
2723
|
/** @description Not authenticated */
|
|
@@ -4150,7 +2726,7 @@ export interface operations {
|
|
|
4150
2726
|
[name: string]: unknown;
|
|
4151
2727
|
};
|
|
4152
2728
|
content: {
|
|
4153
|
-
"application/json": components["schemas"]["
|
|
2729
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4154
2730
|
};
|
|
4155
2731
|
};
|
|
4156
2732
|
/** @description Insufficient permissions */
|
|
@@ -4159,7 +2735,7 @@ export interface operations {
|
|
|
4159
2735
|
[name: string]: unknown;
|
|
4160
2736
|
};
|
|
4161
2737
|
content: {
|
|
4162
|
-
"application/json": components["schemas"]["
|
|
2738
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4163
2739
|
};
|
|
4164
2740
|
};
|
|
4165
2741
|
/** @description Not found */
|
|
@@ -4168,7 +2744,7 @@ export interface operations {
|
|
|
4168
2744
|
[name: string]: unknown;
|
|
4169
2745
|
};
|
|
4170
2746
|
content: {
|
|
4171
|
-
"application/json": components["schemas"]["
|
|
2747
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4172
2748
|
};
|
|
4173
2749
|
};
|
|
4174
2750
|
/** @description Already processed */
|
|
@@ -4177,7 +2753,7 @@ export interface operations {
|
|
|
4177
2753
|
[name: string]: unknown;
|
|
4178
2754
|
};
|
|
4179
2755
|
content: {
|
|
4180
|
-
"application/json": components["schemas"]["
|
|
2756
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4181
2757
|
};
|
|
4182
2758
|
};
|
|
4183
2759
|
/** @description Internal server error */
|
|
@@ -4186,7 +2762,7 @@ export interface operations {
|
|
|
4186
2762
|
[name: string]: unknown;
|
|
4187
2763
|
};
|
|
4188
2764
|
content: {
|
|
4189
|
-
"application/json": components["schemas"]["
|
|
2765
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4190
2766
|
};
|
|
4191
2767
|
};
|
|
4192
2768
|
};
|
|
@@ -4221,7 +2797,7 @@ export interface operations {
|
|
|
4221
2797
|
[name: string]: unknown;
|
|
4222
2798
|
};
|
|
4223
2799
|
content: {
|
|
4224
|
-
"application/json": components["schemas"]["
|
|
2800
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4225
2801
|
};
|
|
4226
2802
|
};
|
|
4227
2803
|
/** @description Not authenticated */
|
|
@@ -4230,7 +2806,7 @@ export interface operations {
|
|
|
4230
2806
|
[name: string]: unknown;
|
|
4231
2807
|
};
|
|
4232
2808
|
content: {
|
|
4233
|
-
"application/json": components["schemas"]["
|
|
2809
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4234
2810
|
};
|
|
4235
2811
|
};
|
|
4236
2812
|
/** @description Insufficient permissions */
|
|
@@ -4239,7 +2815,7 @@ export interface operations {
|
|
|
4239
2815
|
[name: string]: unknown;
|
|
4240
2816
|
};
|
|
4241
2817
|
content: {
|
|
4242
|
-
"application/json": components["schemas"]["
|
|
2818
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4243
2819
|
};
|
|
4244
2820
|
};
|
|
4245
2821
|
/** @description Request not found */
|
|
@@ -4248,7 +2824,7 @@ export interface operations {
|
|
|
4248
2824
|
[name: string]: unknown;
|
|
4249
2825
|
};
|
|
4250
2826
|
content: {
|
|
4251
|
-
"application/json": components["schemas"]["
|
|
2827
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4252
2828
|
};
|
|
4253
2829
|
};
|
|
4254
2830
|
/** @description Internal server error */
|
|
@@ -4257,7 +2833,7 @@ export interface operations {
|
|
|
4257
2833
|
[name: string]: unknown;
|
|
4258
2834
|
};
|
|
4259
2835
|
content: {
|
|
4260
|
-
"application/json": components["schemas"]["
|
|
2836
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4261
2837
|
};
|
|
4262
2838
|
};
|
|
4263
2839
|
};
|
|
@@ -4289,7 +2865,7 @@ export interface operations {
|
|
|
4289
2865
|
[name: string]: unknown;
|
|
4290
2866
|
};
|
|
4291
2867
|
content: {
|
|
4292
|
-
"application/json": components["schemas"]["
|
|
2868
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4293
2869
|
};
|
|
4294
2870
|
};
|
|
4295
2871
|
/** @description Not authenticated */
|
|
@@ -4298,7 +2874,7 @@ export interface operations {
|
|
|
4298
2874
|
[name: string]: unknown;
|
|
4299
2875
|
};
|
|
4300
2876
|
content: {
|
|
4301
|
-
"application/json": components["schemas"]["
|
|
2877
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4302
2878
|
};
|
|
4303
2879
|
};
|
|
4304
2880
|
/** @description Insufficient permissions */
|
|
@@ -4307,7 +2883,7 @@ export interface operations {
|
|
|
4307
2883
|
[name: string]: unknown;
|
|
4308
2884
|
};
|
|
4309
2885
|
content: {
|
|
4310
|
-
"application/json": components["schemas"]["
|
|
2886
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4311
2887
|
};
|
|
4312
2888
|
};
|
|
4313
2889
|
/** @description Not found */
|
|
@@ -4316,7 +2892,7 @@ export interface operations {
|
|
|
4316
2892
|
[name: string]: unknown;
|
|
4317
2893
|
};
|
|
4318
2894
|
content: {
|
|
4319
|
-
"application/json": components["schemas"]["
|
|
2895
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4320
2896
|
};
|
|
4321
2897
|
};
|
|
4322
2898
|
/** @description Already processed */
|
|
@@ -4325,7 +2901,7 @@ export interface operations {
|
|
|
4325
2901
|
[name: string]: unknown;
|
|
4326
2902
|
};
|
|
4327
2903
|
content: {
|
|
4328
|
-
"application/json": components["schemas"]["
|
|
2904
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4329
2905
|
};
|
|
4330
2906
|
};
|
|
4331
2907
|
/** @description Internal server error */
|
|
@@ -4334,7 +2910,7 @@ export interface operations {
|
|
|
4334
2910
|
[name: string]: unknown;
|
|
4335
2911
|
};
|
|
4336
2912
|
content: {
|
|
4337
|
-
"application/json": components["schemas"]["
|
|
2913
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4338
2914
|
};
|
|
4339
2915
|
};
|
|
4340
2916
|
};
|
|
@@ -4364,7 +2940,7 @@ export interface operations {
|
|
|
4364
2940
|
[name: string]: unknown;
|
|
4365
2941
|
};
|
|
4366
2942
|
content: {
|
|
4367
|
-
"application/json": components["schemas"]["
|
|
2943
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4368
2944
|
};
|
|
4369
2945
|
};
|
|
4370
2946
|
/** @description Not authenticated */
|
|
@@ -4373,7 +2949,7 @@ export interface operations {
|
|
|
4373
2949
|
[name: string]: unknown;
|
|
4374
2950
|
};
|
|
4375
2951
|
content: {
|
|
4376
|
-
"application/json": components["schemas"]["
|
|
2952
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4377
2953
|
};
|
|
4378
2954
|
};
|
|
4379
2955
|
/** @description Insufficient permissions */
|
|
@@ -4382,7 +2958,7 @@ export interface operations {
|
|
|
4382
2958
|
[name: string]: unknown;
|
|
4383
2959
|
};
|
|
4384
2960
|
content: {
|
|
4385
|
-
"application/json": components["schemas"]["
|
|
2961
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4386
2962
|
};
|
|
4387
2963
|
};
|
|
4388
2964
|
/** @description Request not found */
|
|
@@ -4391,7 +2967,7 @@ export interface operations {
|
|
|
4391
2967
|
[name: string]: unknown;
|
|
4392
2968
|
};
|
|
4393
2969
|
content: {
|
|
4394
|
-
"application/json": components["schemas"]["
|
|
2970
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4395
2971
|
};
|
|
4396
2972
|
};
|
|
4397
2973
|
/** @description Internal server error */
|
|
@@ -4400,7 +2976,7 @@ export interface operations {
|
|
|
4400
2976
|
[name: string]: unknown;
|
|
4401
2977
|
};
|
|
4402
2978
|
content: {
|
|
4403
|
-
"application/json": components["schemas"]["
|
|
2979
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4404
2980
|
};
|
|
4405
2981
|
};
|
|
4406
2982
|
};
|
|
@@ -4432,7 +3008,7 @@ export interface operations {
|
|
|
4432
3008
|
[name: string]: unknown;
|
|
4433
3009
|
};
|
|
4434
3010
|
content: {
|
|
4435
|
-
"application/json": components["schemas"]["
|
|
3011
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4436
3012
|
};
|
|
4437
3013
|
};
|
|
4438
3014
|
/** @description Not authenticated */
|
|
@@ -4441,7 +3017,7 @@ export interface operations {
|
|
|
4441
3017
|
[name: string]: unknown;
|
|
4442
3018
|
};
|
|
4443
3019
|
content: {
|
|
4444
|
-
"application/json": components["schemas"]["
|
|
3020
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4445
3021
|
};
|
|
4446
3022
|
};
|
|
4447
3023
|
/** @description Insufficient permissions */
|
|
@@ -4450,7 +3026,7 @@ export interface operations {
|
|
|
4450
3026
|
[name: string]: unknown;
|
|
4451
3027
|
};
|
|
4452
3028
|
content: {
|
|
4453
|
-
"application/json": components["schemas"]["
|
|
3029
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4454
3030
|
};
|
|
4455
3031
|
};
|
|
4456
3032
|
/** @description Not found */
|
|
@@ -4459,7 +3035,7 @@ export interface operations {
|
|
|
4459
3035
|
[name: string]: unknown;
|
|
4460
3036
|
};
|
|
4461
3037
|
content: {
|
|
4462
|
-
"application/json": components["schemas"]["
|
|
3038
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4463
3039
|
};
|
|
4464
3040
|
};
|
|
4465
3041
|
/** @description Request expired */
|
|
@@ -4468,7 +3044,7 @@ export interface operations {
|
|
|
4468
3044
|
[name: string]: unknown;
|
|
4469
3045
|
};
|
|
4470
3046
|
content: {
|
|
4471
|
-
"application/json": components["schemas"]["
|
|
3047
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4472
3048
|
};
|
|
4473
3049
|
};
|
|
4474
3050
|
/** @description Internal server error */
|
|
@@ -4477,7 +3053,7 @@ export interface operations {
|
|
|
4477
3053
|
[name: string]: unknown;
|
|
4478
3054
|
};
|
|
4479
3055
|
content: {
|
|
4480
|
-
"application/json": components["schemas"]["
|
|
3056
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4481
3057
|
};
|
|
4482
3058
|
};
|
|
4483
3059
|
};
|
|
@@ -4512,7 +3088,7 @@ export interface operations {
|
|
|
4512
3088
|
[name: string]: unknown;
|
|
4513
3089
|
};
|
|
4514
3090
|
content: {
|
|
4515
|
-
"application/json": components["schemas"]["
|
|
3091
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4516
3092
|
};
|
|
4517
3093
|
};
|
|
4518
3094
|
/** @description Not authenticated */
|
|
@@ -4521,7 +3097,7 @@ export interface operations {
|
|
|
4521
3097
|
[name: string]: unknown;
|
|
4522
3098
|
};
|
|
4523
3099
|
content: {
|
|
4524
|
-
"application/json": components["schemas"]["
|
|
3100
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4525
3101
|
};
|
|
4526
3102
|
};
|
|
4527
3103
|
/** @description Insufficient permissions */
|
|
@@ -4530,7 +3106,7 @@ export interface operations {
|
|
|
4530
3106
|
[name: string]: unknown;
|
|
4531
3107
|
};
|
|
4532
3108
|
content: {
|
|
4533
|
-
"application/json": components["schemas"]["
|
|
3109
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4534
3110
|
};
|
|
4535
3111
|
};
|
|
4536
3112
|
/** @description Not found or app_client_id mismatch */
|
|
@@ -4539,7 +3115,7 @@ export interface operations {
|
|
|
4539
3115
|
[name: string]: unknown;
|
|
4540
3116
|
};
|
|
4541
3117
|
content: {
|
|
4542
|
-
"application/json": components["schemas"]["
|
|
3118
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4543
3119
|
};
|
|
4544
3120
|
};
|
|
4545
3121
|
/** @description Internal server error */
|
|
@@ -4548,7 +3124,7 @@ export interface operations {
|
|
|
4548
3124
|
[name: string]: unknown;
|
|
4549
3125
|
};
|
|
4550
3126
|
content: {
|
|
4551
|
-
"application/json": components["schemas"]["
|
|
3127
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4552
3128
|
};
|
|
4553
3129
|
};
|
|
4554
3130
|
};
|
|
@@ -4577,7 +3153,7 @@ export interface operations {
|
|
|
4577
3153
|
[name: string]: unknown;
|
|
4578
3154
|
};
|
|
4579
3155
|
content: {
|
|
4580
|
-
"application/json": components["schemas"]["
|
|
3156
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4581
3157
|
};
|
|
4582
3158
|
};
|
|
4583
3159
|
/** @description Not authenticated */
|
|
@@ -4586,7 +3162,7 @@ export interface operations {
|
|
|
4586
3162
|
[name: string]: unknown;
|
|
4587
3163
|
};
|
|
4588
3164
|
content: {
|
|
4589
|
-
"application/json": components["schemas"]["
|
|
3165
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4590
3166
|
};
|
|
4591
3167
|
};
|
|
4592
3168
|
/** @description Insufficient permissions */
|
|
@@ -4595,7 +3171,7 @@ export interface operations {
|
|
|
4595
3171
|
[name: string]: unknown;
|
|
4596
3172
|
};
|
|
4597
3173
|
content: {
|
|
4598
|
-
"application/json": components["schemas"]["
|
|
3174
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4599
3175
|
};
|
|
4600
3176
|
};
|
|
4601
3177
|
/** @description Internal server error */
|
|
@@ -4604,7 +3180,7 @@ export interface operations {
|
|
|
4604
3180
|
[name: string]: unknown;
|
|
4605
3181
|
};
|
|
4606
3182
|
content: {
|
|
4607
|
-
"application/json": components["schemas"]["
|
|
3183
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4608
3184
|
};
|
|
4609
3185
|
};
|
|
4610
3186
|
};
|
|
@@ -4636,7 +3212,7 @@ export interface operations {
|
|
|
4636
3212
|
[name: string]: unknown;
|
|
4637
3213
|
};
|
|
4638
3214
|
content: {
|
|
4639
|
-
"application/json": components["schemas"]["
|
|
3215
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4640
3216
|
};
|
|
4641
3217
|
};
|
|
4642
3218
|
/** @description Not authenticated */
|
|
@@ -4645,7 +3221,7 @@ export interface operations {
|
|
|
4645
3221
|
[name: string]: unknown;
|
|
4646
3222
|
};
|
|
4647
3223
|
content: {
|
|
4648
|
-
"application/json": components["schemas"]["
|
|
3224
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4649
3225
|
};
|
|
4650
3226
|
};
|
|
4651
3227
|
/** @description Insufficient permissions */
|
|
@@ -4654,7 +3230,7 @@ export interface operations {
|
|
|
4654
3230
|
[name: string]: unknown;
|
|
4655
3231
|
};
|
|
4656
3232
|
content: {
|
|
4657
|
-
"application/json": components["schemas"]["
|
|
3233
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4658
3234
|
};
|
|
4659
3235
|
};
|
|
4660
3236
|
/** @description MCP not found */
|
|
@@ -4670,7 +3246,7 @@ export interface operations {
|
|
|
4670
3246
|
[name: string]: unknown;
|
|
4671
3247
|
};
|
|
4672
3248
|
content: {
|
|
4673
|
-
"application/json": components["schemas"]["
|
|
3249
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4674
3250
|
};
|
|
4675
3251
|
};
|
|
4676
3252
|
};
|
|
@@ -4700,7 +3276,7 @@ export interface operations {
|
|
|
4700
3276
|
[name: string]: unknown;
|
|
4701
3277
|
};
|
|
4702
3278
|
content: {
|
|
4703
|
-
"application/json": components["schemas"]["
|
|
3279
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4704
3280
|
};
|
|
4705
3281
|
};
|
|
4706
3282
|
/** @description Not authenticated */
|
|
@@ -4709,7 +3285,7 @@ export interface operations {
|
|
|
4709
3285
|
[name: string]: unknown;
|
|
4710
3286
|
};
|
|
4711
3287
|
content: {
|
|
4712
|
-
"application/json": components["schemas"]["
|
|
3288
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4713
3289
|
};
|
|
4714
3290
|
};
|
|
4715
3291
|
/** @description Insufficient permissions */
|
|
@@ -4718,7 +3294,7 @@ export interface operations {
|
|
|
4718
3294
|
[name: string]: unknown;
|
|
4719
3295
|
};
|
|
4720
3296
|
content: {
|
|
4721
|
-
"application/json": components["schemas"]["
|
|
3297
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4722
3298
|
};
|
|
4723
3299
|
};
|
|
4724
3300
|
/** @description Internal server error */
|
|
@@ -4727,7 +3303,7 @@ export interface operations {
|
|
|
4727
3303
|
[name: string]: unknown;
|
|
4728
3304
|
};
|
|
4729
3305
|
content: {
|
|
4730
|
-
"application/json": components["schemas"]["
|
|
3306
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4731
3307
|
};
|
|
4732
3308
|
};
|
|
4733
3309
|
};
|
|
@@ -4761,7 +3337,7 @@ export interface operations {
|
|
|
4761
3337
|
[name: string]: unknown;
|
|
4762
3338
|
};
|
|
4763
3339
|
content: {
|
|
4764
|
-
"application/json": components["schemas"]["
|
|
3340
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4765
3341
|
};
|
|
4766
3342
|
};
|
|
4767
3343
|
/** @description Not authenticated */
|
|
@@ -4770,7 +3346,7 @@ export interface operations {
|
|
|
4770
3346
|
[name: string]: unknown;
|
|
4771
3347
|
};
|
|
4772
3348
|
content: {
|
|
4773
|
-
"application/json": components["schemas"]["
|
|
3349
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4774
3350
|
};
|
|
4775
3351
|
};
|
|
4776
3352
|
/** @description Insufficient permissions */
|
|
@@ -4779,7 +3355,7 @@ export interface operations {
|
|
|
4779
3355
|
[name: string]: unknown;
|
|
4780
3356
|
};
|
|
4781
3357
|
content: {
|
|
4782
|
-
"application/json": components["schemas"]["
|
|
3358
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4783
3359
|
};
|
|
4784
3360
|
};
|
|
4785
3361
|
/** @description App client not found */
|
|
@@ -4788,7 +3364,7 @@ export interface operations {
|
|
|
4788
3364
|
[name: string]: unknown;
|
|
4789
3365
|
};
|
|
4790
3366
|
content: {
|
|
4791
|
-
"application/json": components["schemas"]["
|
|
3367
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4792
3368
|
};
|
|
4793
3369
|
};
|
|
4794
3370
|
/** @description Internal server error */
|
|
@@ -4797,7 +3373,7 @@ export interface operations {
|
|
|
4797
3373
|
[name: string]: unknown;
|
|
4798
3374
|
};
|
|
4799
3375
|
content: {
|
|
4800
|
-
"application/json": components["schemas"]["
|
|
3376
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4801
3377
|
};
|
|
4802
3378
|
};
|
|
4803
3379
|
};
|
|
@@ -4838,7 +3414,7 @@ export interface operations {
|
|
|
4838
3414
|
[name: string]: unknown;
|
|
4839
3415
|
};
|
|
4840
3416
|
content: {
|
|
4841
|
-
"application/json": components["schemas"]["
|
|
3417
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4842
3418
|
};
|
|
4843
3419
|
};
|
|
4844
3420
|
/** @description Not authenticated */
|
|
@@ -4847,7 +3423,7 @@ export interface operations {
|
|
|
4847
3423
|
[name: string]: unknown;
|
|
4848
3424
|
};
|
|
4849
3425
|
content: {
|
|
4850
|
-
"application/json": components["schemas"]["
|
|
3426
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4851
3427
|
};
|
|
4852
3428
|
};
|
|
4853
3429
|
/** @description Insufficient permissions */
|
|
@@ -4856,7 +3432,7 @@ export interface operations {
|
|
|
4856
3432
|
[name: string]: unknown;
|
|
4857
3433
|
};
|
|
4858
3434
|
content: {
|
|
4859
|
-
"application/json": components["schemas"]["
|
|
3435
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4860
3436
|
};
|
|
4861
3437
|
};
|
|
4862
3438
|
/** @description OAuth error, invalid request parameters, or state mismatch */
|
|
@@ -4872,7 +3448,7 @@ export interface operations {
|
|
|
4872
3448
|
* "type": "invalid_request_error"
|
|
4873
3449
|
* }
|
|
4874
3450
|
* } */
|
|
4875
|
-
"application/json": components["schemas"]["
|
|
3451
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4876
3452
|
};
|
|
4877
3453
|
};
|
|
4878
3454
|
/** @description Internal server error */
|
|
@@ -4881,7 +3457,7 @@ export interface operations {
|
|
|
4881
3457
|
[name: string]: unknown;
|
|
4882
3458
|
};
|
|
4883
3459
|
content: {
|
|
4884
|
-
"application/json": components["schemas"]["
|
|
3460
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4885
3461
|
};
|
|
4886
3462
|
};
|
|
4887
3463
|
};
|
|
@@ -4915,7 +3491,7 @@ export interface operations {
|
|
|
4915
3491
|
[name: string]: unknown;
|
|
4916
3492
|
};
|
|
4917
3493
|
content: {
|
|
4918
|
-
"application/json": components["schemas"]["
|
|
3494
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4919
3495
|
};
|
|
4920
3496
|
};
|
|
4921
3497
|
/** @description Not authenticated */
|
|
@@ -4924,7 +3500,7 @@ export interface operations {
|
|
|
4924
3500
|
[name: string]: unknown;
|
|
4925
3501
|
};
|
|
4926
3502
|
content: {
|
|
4927
|
-
"application/json": components["schemas"]["
|
|
3503
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4928
3504
|
};
|
|
4929
3505
|
};
|
|
4930
3506
|
/** @description Insufficient permissions */
|
|
@@ -4933,7 +3509,7 @@ export interface operations {
|
|
|
4933
3509
|
[name: string]: unknown;
|
|
4934
3510
|
};
|
|
4935
3511
|
content: {
|
|
4936
|
-
"application/json": components["schemas"]["
|
|
3512
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4937
3513
|
};
|
|
4938
3514
|
};
|
|
4939
3515
|
/** @description Internal server error */
|
|
@@ -4942,7 +3518,7 @@ export interface operations {
|
|
|
4942
3518
|
[name: string]: unknown;
|
|
4943
3519
|
};
|
|
4944
3520
|
content: {
|
|
4945
|
-
"application/json": components["schemas"]["
|
|
3521
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4946
3522
|
};
|
|
4947
3523
|
};
|
|
4948
3524
|
};
|
|
@@ -4984,7 +3560,7 @@ export interface operations {
|
|
|
4984
3560
|
[name: string]: unknown;
|
|
4985
3561
|
};
|
|
4986
3562
|
content: {
|
|
4987
|
-
"application/json": components["schemas"]["
|
|
3563
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4988
3564
|
};
|
|
4989
3565
|
};
|
|
4990
3566
|
/** @description Not authenticated */
|
|
@@ -4993,7 +3569,7 @@ export interface operations {
|
|
|
4993
3569
|
[name: string]: unknown;
|
|
4994
3570
|
};
|
|
4995
3571
|
content: {
|
|
4996
|
-
"application/json": components["schemas"]["
|
|
3572
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
4997
3573
|
};
|
|
4998
3574
|
};
|
|
4999
3575
|
/** @description Insufficient permissions */
|
|
@@ -5002,7 +3578,7 @@ export interface operations {
|
|
|
5002
3578
|
[name: string]: unknown;
|
|
5003
3579
|
};
|
|
5004
3580
|
content: {
|
|
5005
|
-
"application/json": components["schemas"]["
|
|
3581
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5006
3582
|
};
|
|
5007
3583
|
};
|
|
5008
3584
|
/** @description Internal server error */
|
|
@@ -5011,7 +3587,7 @@ export interface operations {
|
|
|
5011
3587
|
[name: string]: unknown;
|
|
5012
3588
|
};
|
|
5013
3589
|
content: {
|
|
5014
|
-
"application/json": components["schemas"]["
|
|
3590
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5015
3591
|
};
|
|
5016
3592
|
};
|
|
5017
3593
|
};
|
|
@@ -5060,7 +3636,7 @@ export interface operations {
|
|
|
5060
3636
|
[name: string]: unknown;
|
|
5061
3637
|
};
|
|
5062
3638
|
content: {
|
|
5063
|
-
"application/json": components["schemas"]["
|
|
3639
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5064
3640
|
};
|
|
5065
3641
|
};
|
|
5066
3642
|
/** @description Not authenticated */
|
|
@@ -5069,7 +3645,7 @@ export interface operations {
|
|
|
5069
3645
|
[name: string]: unknown;
|
|
5070
3646
|
};
|
|
5071
3647
|
content: {
|
|
5072
|
-
"application/json": components["schemas"]["
|
|
3648
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5073
3649
|
};
|
|
5074
3650
|
};
|
|
5075
3651
|
/** @description Insufficient permissions */
|
|
@@ -5078,7 +3654,7 @@ export interface operations {
|
|
|
5078
3654
|
[name: string]: unknown;
|
|
5079
3655
|
};
|
|
5080
3656
|
content: {
|
|
5081
|
-
"application/json": components["schemas"]["
|
|
3657
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5082
3658
|
};
|
|
5083
3659
|
};
|
|
5084
3660
|
/** @description Internal server error */
|
|
@@ -5087,7 +3663,7 @@ export interface operations {
|
|
|
5087
3663
|
[name: string]: unknown;
|
|
5088
3664
|
};
|
|
5089
3665
|
content: {
|
|
5090
|
-
"application/json": components["schemas"]["
|
|
3666
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5091
3667
|
};
|
|
5092
3668
|
};
|
|
5093
3669
|
};
|
|
@@ -5124,7 +3700,7 @@ export interface operations {
|
|
|
5124
3700
|
[name: string]: unknown;
|
|
5125
3701
|
};
|
|
5126
3702
|
content: {
|
|
5127
|
-
"application/json": components["schemas"]["
|
|
3703
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5128
3704
|
};
|
|
5129
3705
|
};
|
|
5130
3706
|
/** @description Internal server error */
|
|
@@ -5133,7 +3709,7 @@ export interface operations {
|
|
|
5133
3709
|
[name: string]: unknown;
|
|
5134
3710
|
};
|
|
5135
3711
|
content: {
|
|
5136
|
-
"application/json": components["schemas"]["
|
|
3712
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5137
3713
|
};
|
|
5138
3714
|
};
|
|
5139
3715
|
};
|
|
@@ -5165,7 +3741,7 @@ export interface operations {
|
|
|
5165
3741
|
[name: string]: unknown;
|
|
5166
3742
|
};
|
|
5167
3743
|
content: {
|
|
5168
|
-
"application/json": components["schemas"]["
|
|
3744
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5169
3745
|
};
|
|
5170
3746
|
};
|
|
5171
3747
|
/** @description Not authenticated */
|
|
@@ -5174,7 +3750,7 @@ export interface operations {
|
|
|
5174
3750
|
[name: string]: unknown;
|
|
5175
3751
|
};
|
|
5176
3752
|
content: {
|
|
5177
|
-
"application/json": components["schemas"]["
|
|
3753
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5178
3754
|
};
|
|
5179
3755
|
};
|
|
5180
3756
|
/** @description Insufficient permissions */
|
|
@@ -5183,7 +3759,7 @@ export interface operations {
|
|
|
5183
3759
|
[name: string]: unknown;
|
|
5184
3760
|
};
|
|
5185
3761
|
content: {
|
|
5186
|
-
"application/json": components["schemas"]["
|
|
3762
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5187
3763
|
};
|
|
5188
3764
|
};
|
|
5189
3765
|
/** @description Internal server error */
|
|
@@ -5192,7 +3768,7 @@ export interface operations {
|
|
|
5192
3768
|
[name: string]: unknown;
|
|
5193
3769
|
};
|
|
5194
3770
|
content: {
|
|
5195
|
-
"application/json": components["schemas"]["
|
|
3771
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5196
3772
|
};
|
|
5197
3773
|
};
|
|
5198
3774
|
};
|
|
@@ -5221,7 +3797,7 @@ export interface operations {
|
|
|
5221
3797
|
[name: string]: unknown;
|
|
5222
3798
|
};
|
|
5223
3799
|
content: {
|
|
5224
|
-
"application/json": components["schemas"]["
|
|
3800
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5225
3801
|
};
|
|
5226
3802
|
};
|
|
5227
3803
|
/** @description Not authenticated */
|
|
@@ -5230,7 +3806,7 @@ export interface operations {
|
|
|
5230
3806
|
[name: string]: unknown;
|
|
5231
3807
|
};
|
|
5232
3808
|
content: {
|
|
5233
|
-
"application/json": components["schemas"]["
|
|
3809
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5234
3810
|
};
|
|
5235
3811
|
};
|
|
5236
3812
|
/** @description Insufficient permissions */
|
|
@@ -5239,7 +3815,7 @@ export interface operations {
|
|
|
5239
3815
|
[name: string]: unknown;
|
|
5240
3816
|
};
|
|
5241
3817
|
content: {
|
|
5242
|
-
"application/json": components["schemas"]["
|
|
3818
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5243
3819
|
};
|
|
5244
3820
|
};
|
|
5245
3821
|
/** @description Internal server error */
|
|
@@ -5248,7 +3824,7 @@ export interface operations {
|
|
|
5248
3824
|
[name: string]: unknown;
|
|
5249
3825
|
};
|
|
5250
3826
|
content: {
|
|
5251
|
-
"application/json": components["schemas"]["
|
|
3827
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5252
3828
|
};
|
|
5253
3829
|
};
|
|
5254
3830
|
};
|
|
@@ -5281,7 +3857,7 @@ export interface operations {
|
|
|
5281
3857
|
[name: string]: unknown;
|
|
5282
3858
|
};
|
|
5283
3859
|
content: {
|
|
5284
|
-
"application/json": components["schemas"]["
|
|
3860
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5285
3861
|
};
|
|
5286
3862
|
};
|
|
5287
3863
|
/** @description Not authenticated */
|
|
@@ -5290,7 +3866,7 @@ export interface operations {
|
|
|
5290
3866
|
[name: string]: unknown;
|
|
5291
3867
|
};
|
|
5292
3868
|
content: {
|
|
5293
|
-
"application/json": components["schemas"]["
|
|
3869
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5294
3870
|
};
|
|
5295
3871
|
};
|
|
5296
3872
|
/** @description Insufficient permissions */
|
|
@@ -5299,7 +3875,7 @@ export interface operations {
|
|
|
5299
3875
|
[name: string]: unknown;
|
|
5300
3876
|
};
|
|
5301
3877
|
content: {
|
|
5302
|
-
"application/json": components["schemas"]["
|
|
3878
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5303
3879
|
};
|
|
5304
3880
|
};
|
|
5305
3881
|
/** @description Internal server error */
|
|
@@ -5308,7 +3884,7 @@ export interface operations {
|
|
|
5308
3884
|
[name: string]: unknown;
|
|
5309
3885
|
};
|
|
5310
3886
|
content: {
|
|
5311
|
-
"application/json": components["schemas"]["
|
|
3887
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5312
3888
|
};
|
|
5313
3889
|
};
|
|
5314
3890
|
};
|
|
@@ -5339,7 +3915,7 @@ export interface operations {
|
|
|
5339
3915
|
[name: string]: unknown;
|
|
5340
3916
|
};
|
|
5341
3917
|
content: {
|
|
5342
|
-
"application/json": components["schemas"]["
|
|
3918
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5343
3919
|
};
|
|
5344
3920
|
};
|
|
5345
3921
|
/** @description Not authenticated */
|
|
@@ -5348,7 +3924,7 @@ export interface operations {
|
|
|
5348
3924
|
[name: string]: unknown;
|
|
5349
3925
|
};
|
|
5350
3926
|
content: {
|
|
5351
|
-
"application/json": components["schemas"]["
|
|
3927
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5352
3928
|
};
|
|
5353
3929
|
};
|
|
5354
3930
|
/** @description Insufficient permissions */
|
|
@@ -5357,7 +3933,7 @@ export interface operations {
|
|
|
5357
3933
|
[name: string]: unknown;
|
|
5358
3934
|
};
|
|
5359
3935
|
content: {
|
|
5360
|
-
"application/json": components["schemas"]["
|
|
3936
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5361
3937
|
};
|
|
5362
3938
|
};
|
|
5363
3939
|
/** @description Internal server error */
|
|
@@ -5366,7 +3942,7 @@ export interface operations {
|
|
|
5366
3942
|
[name: string]: unknown;
|
|
5367
3943
|
};
|
|
5368
3944
|
content: {
|
|
5369
|
-
"application/json": components["schemas"]["
|
|
3945
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5370
3946
|
};
|
|
5371
3947
|
};
|
|
5372
3948
|
};
|
|
@@ -5399,7 +3975,7 @@ export interface operations {
|
|
|
5399
3975
|
[name: string]: unknown;
|
|
5400
3976
|
};
|
|
5401
3977
|
content: {
|
|
5402
|
-
"application/json": components["schemas"]["
|
|
3978
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5403
3979
|
};
|
|
5404
3980
|
};
|
|
5405
3981
|
/** @description Not authenticated */
|
|
@@ -5408,7 +3984,7 @@ export interface operations {
|
|
|
5408
3984
|
[name: string]: unknown;
|
|
5409
3985
|
};
|
|
5410
3986
|
content: {
|
|
5411
|
-
"application/json": components["schemas"]["
|
|
3987
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5412
3988
|
};
|
|
5413
3989
|
};
|
|
5414
3990
|
/** @description Insufficient permissions */
|
|
@@ -5417,7 +3993,7 @@ export interface operations {
|
|
|
5417
3993
|
[name: string]: unknown;
|
|
5418
3994
|
};
|
|
5419
3995
|
content: {
|
|
5420
|
-
"application/json": components["schemas"]["
|
|
3996
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5421
3997
|
};
|
|
5422
3998
|
};
|
|
5423
3999
|
/** @description Internal server error */
|
|
@@ -5426,7 +4002,7 @@ export interface operations {
|
|
|
5426
4002
|
[name: string]: unknown;
|
|
5427
4003
|
};
|
|
5428
4004
|
content: {
|
|
5429
|
-
"application/json": components["schemas"]["
|
|
4005
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5430
4006
|
};
|
|
5431
4007
|
};
|
|
5432
4008
|
};
|
|
@@ -5458,7 +4034,7 @@ export interface operations {
|
|
|
5458
4034
|
[name: string]: unknown;
|
|
5459
4035
|
};
|
|
5460
4036
|
content: {
|
|
5461
|
-
"application/json": components["schemas"]["
|
|
4037
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5462
4038
|
};
|
|
5463
4039
|
};
|
|
5464
4040
|
/** @description Not authenticated */
|
|
@@ -5467,7 +4043,7 @@ export interface operations {
|
|
|
5467
4043
|
[name: string]: unknown;
|
|
5468
4044
|
};
|
|
5469
4045
|
content: {
|
|
5470
|
-
"application/json": components["schemas"]["
|
|
4046
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5471
4047
|
};
|
|
5472
4048
|
};
|
|
5473
4049
|
/** @description Insufficient permissions */
|
|
@@ -5476,7 +4052,7 @@ export interface operations {
|
|
|
5476
4052
|
[name: string]: unknown;
|
|
5477
4053
|
};
|
|
5478
4054
|
content: {
|
|
5479
|
-
"application/json": components["schemas"]["
|
|
4055
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5480
4056
|
};
|
|
5481
4057
|
};
|
|
5482
4058
|
/** @description Not found */
|
|
@@ -5492,7 +4068,7 @@ export interface operations {
|
|
|
5492
4068
|
[name: string]: unknown;
|
|
5493
4069
|
};
|
|
5494
4070
|
content: {
|
|
5495
|
-
"application/json": components["schemas"]["
|
|
4071
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5496
4072
|
};
|
|
5497
4073
|
};
|
|
5498
4074
|
};
|
|
@@ -5522,7 +4098,7 @@ export interface operations {
|
|
|
5522
4098
|
[name: string]: unknown;
|
|
5523
4099
|
};
|
|
5524
4100
|
content: {
|
|
5525
|
-
"application/json": components["schemas"]["
|
|
4101
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5526
4102
|
};
|
|
5527
4103
|
};
|
|
5528
4104
|
/** @description Not authenticated */
|
|
@@ -5531,7 +4107,7 @@ export interface operations {
|
|
|
5531
4107
|
[name: string]: unknown;
|
|
5532
4108
|
};
|
|
5533
4109
|
content: {
|
|
5534
|
-
"application/json": components["schemas"]["
|
|
4110
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5535
4111
|
};
|
|
5536
4112
|
};
|
|
5537
4113
|
/** @description Insufficient permissions */
|
|
@@ -5540,7 +4116,7 @@ export interface operations {
|
|
|
5540
4116
|
[name: string]: unknown;
|
|
5541
4117
|
};
|
|
5542
4118
|
content: {
|
|
5543
|
-
"application/json": components["schemas"]["
|
|
4119
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5544
4120
|
};
|
|
5545
4121
|
};
|
|
5546
4122
|
/** @description Not found */
|
|
@@ -5556,7 +4132,7 @@ export interface operations {
|
|
|
5556
4132
|
[name: string]: unknown;
|
|
5557
4133
|
};
|
|
5558
4134
|
content: {
|
|
5559
|
-
"application/json": components["schemas"]["
|
|
4135
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5560
4136
|
};
|
|
5561
4137
|
};
|
|
5562
4138
|
};
|
|
@@ -5592,7 +4168,7 @@ export interface operations {
|
|
|
5592
4168
|
[name: string]: unknown;
|
|
5593
4169
|
};
|
|
5594
4170
|
content: {
|
|
5595
|
-
"application/json": components["schemas"]["
|
|
4171
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5596
4172
|
};
|
|
5597
4173
|
};
|
|
5598
4174
|
/** @description Not authenticated */
|
|
@@ -5601,7 +4177,7 @@ export interface operations {
|
|
|
5601
4177
|
[name: string]: unknown;
|
|
5602
4178
|
};
|
|
5603
4179
|
content: {
|
|
5604
|
-
"application/json": components["schemas"]["
|
|
4180
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5605
4181
|
};
|
|
5606
4182
|
};
|
|
5607
4183
|
/** @description Insufficient permissions */
|
|
@@ -5610,7 +4186,7 @@ export interface operations {
|
|
|
5610
4186
|
[name: string]: unknown;
|
|
5611
4187
|
};
|
|
5612
4188
|
content: {
|
|
5613
|
-
"application/json": components["schemas"]["
|
|
4189
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5614
4190
|
};
|
|
5615
4191
|
};
|
|
5616
4192
|
/** @description Auth config not found */
|
|
@@ -5626,7 +4202,7 @@ export interface operations {
|
|
|
5626
4202
|
[name: string]: unknown;
|
|
5627
4203
|
};
|
|
5628
4204
|
content: {
|
|
5629
|
-
"application/json": components["schemas"]["
|
|
4205
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5630
4206
|
};
|
|
5631
4207
|
};
|
|
5632
4208
|
};
|
|
@@ -5662,7 +4238,7 @@ export interface operations {
|
|
|
5662
4238
|
[name: string]: unknown;
|
|
5663
4239
|
};
|
|
5664
4240
|
content: {
|
|
5665
|
-
"application/json": components["schemas"]["
|
|
4241
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5666
4242
|
};
|
|
5667
4243
|
};
|
|
5668
4244
|
/** @description Not authenticated */
|
|
@@ -5671,7 +4247,7 @@ export interface operations {
|
|
|
5671
4247
|
[name: string]: unknown;
|
|
5672
4248
|
};
|
|
5673
4249
|
content: {
|
|
5674
|
-
"application/json": components["schemas"]["
|
|
4250
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5675
4251
|
};
|
|
5676
4252
|
};
|
|
5677
4253
|
/** @description Insufficient permissions */
|
|
@@ -5680,7 +4256,7 @@ export interface operations {
|
|
|
5680
4256
|
[name: string]: unknown;
|
|
5681
4257
|
};
|
|
5682
4258
|
content: {
|
|
5683
|
-
"application/json": components["schemas"]["
|
|
4259
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5684
4260
|
};
|
|
5685
4261
|
};
|
|
5686
4262
|
/** @description Auth config not found */
|
|
@@ -5696,7 +4272,7 @@ export interface operations {
|
|
|
5696
4272
|
[name: string]: unknown;
|
|
5697
4273
|
};
|
|
5698
4274
|
content: {
|
|
5699
|
-
"application/json": components["schemas"]["
|
|
4275
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5700
4276
|
};
|
|
5701
4277
|
};
|
|
5702
4278
|
};
|
|
@@ -5728,7 +4304,7 @@ export interface operations {
|
|
|
5728
4304
|
[name: string]: unknown;
|
|
5729
4305
|
};
|
|
5730
4306
|
content: {
|
|
5731
|
-
"application/json": components["schemas"]["
|
|
4307
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5732
4308
|
};
|
|
5733
4309
|
};
|
|
5734
4310
|
/** @description Not authenticated */
|
|
@@ -5737,7 +4313,7 @@ export interface operations {
|
|
|
5737
4313
|
[name: string]: unknown;
|
|
5738
4314
|
};
|
|
5739
4315
|
content: {
|
|
5740
|
-
"application/json": components["schemas"]["
|
|
4316
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5741
4317
|
};
|
|
5742
4318
|
};
|
|
5743
4319
|
/** @description Insufficient permissions */
|
|
@@ -5746,7 +4322,7 @@ export interface operations {
|
|
|
5746
4322
|
[name: string]: unknown;
|
|
5747
4323
|
};
|
|
5748
4324
|
content: {
|
|
5749
|
-
"application/json": components["schemas"]["
|
|
4325
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5750
4326
|
};
|
|
5751
4327
|
};
|
|
5752
4328
|
/** @description Not found */
|
|
@@ -5762,7 +4338,7 @@ export interface operations {
|
|
|
5762
4338
|
[name: string]: unknown;
|
|
5763
4339
|
};
|
|
5764
4340
|
content: {
|
|
5765
|
-
"application/json": components["schemas"]["
|
|
4341
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5766
4342
|
};
|
|
5767
4343
|
};
|
|
5768
4344
|
};
|
|
@@ -5792,7 +4368,7 @@ export interface operations {
|
|
|
5792
4368
|
[name: string]: unknown;
|
|
5793
4369
|
};
|
|
5794
4370
|
content: {
|
|
5795
|
-
"application/json": components["schemas"]["
|
|
4371
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5796
4372
|
};
|
|
5797
4373
|
};
|
|
5798
4374
|
/** @description Not authenticated */
|
|
@@ -5801,7 +4377,7 @@ export interface operations {
|
|
|
5801
4377
|
[name: string]: unknown;
|
|
5802
4378
|
};
|
|
5803
4379
|
content: {
|
|
5804
|
-
"application/json": components["schemas"]["
|
|
4380
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5805
4381
|
};
|
|
5806
4382
|
};
|
|
5807
4383
|
/** @description Insufficient permissions */
|
|
@@ -5810,7 +4386,7 @@ export interface operations {
|
|
|
5810
4386
|
[name: string]: unknown;
|
|
5811
4387
|
};
|
|
5812
4388
|
content: {
|
|
5813
|
-
"application/json": components["schemas"]["
|
|
4389
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5814
4390
|
};
|
|
5815
4391
|
};
|
|
5816
4392
|
/** @description Not found */
|
|
@@ -5826,7 +4402,7 @@ export interface operations {
|
|
|
5826
4402
|
[name: string]: unknown;
|
|
5827
4403
|
};
|
|
5828
4404
|
content: {
|
|
5829
|
-
"application/json": components["schemas"]["
|
|
4405
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5830
4406
|
};
|
|
5831
4407
|
};
|
|
5832
4408
|
};
|
|
@@ -5859,7 +4435,7 @@ export interface operations {
|
|
|
5859
4435
|
[name: string]: unknown;
|
|
5860
4436
|
};
|
|
5861
4437
|
content: {
|
|
5862
|
-
"application/json": components["schemas"]["
|
|
4438
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5863
4439
|
};
|
|
5864
4440
|
};
|
|
5865
4441
|
/** @description Not authenticated */
|
|
@@ -5868,7 +4444,7 @@ export interface operations {
|
|
|
5868
4444
|
[name: string]: unknown;
|
|
5869
4445
|
};
|
|
5870
4446
|
content: {
|
|
5871
|
-
"application/json": components["schemas"]["
|
|
4447
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5872
4448
|
};
|
|
5873
4449
|
};
|
|
5874
4450
|
/** @description Insufficient permissions */
|
|
@@ -5877,7 +4453,7 @@ export interface operations {
|
|
|
5877
4453
|
[name: string]: unknown;
|
|
5878
4454
|
};
|
|
5879
4455
|
content: {
|
|
5880
|
-
"application/json": components["schemas"]["
|
|
4456
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5881
4457
|
};
|
|
5882
4458
|
};
|
|
5883
4459
|
/** @description Internal server error */
|
|
@@ -5886,7 +4462,7 @@ export interface operations {
|
|
|
5886
4462
|
[name: string]: unknown;
|
|
5887
4463
|
};
|
|
5888
4464
|
content: {
|
|
5889
|
-
"application/json": components["schemas"]["
|
|
4465
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5890
4466
|
};
|
|
5891
4467
|
};
|
|
5892
4468
|
};
|
|
@@ -5919,7 +4495,7 @@ export interface operations {
|
|
|
5919
4495
|
[name: string]: unknown;
|
|
5920
4496
|
};
|
|
5921
4497
|
content: {
|
|
5922
|
-
"application/json": components["schemas"]["
|
|
4498
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5923
4499
|
};
|
|
5924
4500
|
};
|
|
5925
4501
|
/** @description Not authenticated */
|
|
@@ -5928,7 +4504,7 @@ export interface operations {
|
|
|
5928
4504
|
[name: string]: unknown;
|
|
5929
4505
|
};
|
|
5930
4506
|
content: {
|
|
5931
|
-
"application/json": components["schemas"]["
|
|
4507
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5932
4508
|
};
|
|
5933
4509
|
};
|
|
5934
4510
|
/** @description Insufficient permissions */
|
|
@@ -5937,7 +4513,7 @@ export interface operations {
|
|
|
5937
4513
|
[name: string]: unknown;
|
|
5938
4514
|
};
|
|
5939
4515
|
content: {
|
|
5940
|
-
"application/json": components["schemas"]["
|
|
4516
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5941
4517
|
};
|
|
5942
4518
|
};
|
|
5943
4519
|
/** @description Internal server error */
|
|
@@ -5946,7 +4522,7 @@ export interface operations {
|
|
|
5946
4522
|
[name: string]: unknown;
|
|
5947
4523
|
};
|
|
5948
4524
|
content: {
|
|
5949
|
-
"application/json": components["schemas"]["
|
|
4525
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5950
4526
|
};
|
|
5951
4527
|
};
|
|
5952
4528
|
};
|
|
@@ -5979,7 +4555,7 @@ export interface operations {
|
|
|
5979
4555
|
[name: string]: unknown;
|
|
5980
4556
|
};
|
|
5981
4557
|
content: {
|
|
5982
|
-
"application/json": components["schemas"]["
|
|
4558
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5983
4559
|
};
|
|
5984
4560
|
};
|
|
5985
4561
|
/** @description Not authenticated */
|
|
@@ -5988,7 +4564,7 @@ export interface operations {
|
|
|
5988
4564
|
[name: string]: unknown;
|
|
5989
4565
|
};
|
|
5990
4566
|
content: {
|
|
5991
|
-
"application/json": components["schemas"]["
|
|
4567
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
5992
4568
|
};
|
|
5993
4569
|
};
|
|
5994
4570
|
/** @description Insufficient permissions */
|
|
@@ -5997,7 +4573,7 @@ export interface operations {
|
|
|
5997
4573
|
[name: string]: unknown;
|
|
5998
4574
|
};
|
|
5999
4575
|
content: {
|
|
6000
|
-
"application/json": components["schemas"]["
|
|
4576
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6001
4577
|
};
|
|
6002
4578
|
};
|
|
6003
4579
|
/** @description Internal server error */
|
|
@@ -6006,7 +4582,7 @@ export interface operations {
|
|
|
6006
4582
|
[name: string]: unknown;
|
|
6007
4583
|
};
|
|
6008
4584
|
content: {
|
|
6009
|
-
"application/json": components["schemas"]["
|
|
4585
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6010
4586
|
};
|
|
6011
4587
|
};
|
|
6012
4588
|
};
|
|
@@ -6038,7 +4614,7 @@ export interface operations {
|
|
|
6038
4614
|
[name: string]: unknown;
|
|
6039
4615
|
};
|
|
6040
4616
|
content: {
|
|
6041
|
-
"application/json": components["schemas"]["
|
|
4617
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6042
4618
|
};
|
|
6043
4619
|
};
|
|
6044
4620
|
/** @description Not authenticated */
|
|
@@ -6047,7 +4623,7 @@ export interface operations {
|
|
|
6047
4623
|
[name: string]: unknown;
|
|
6048
4624
|
};
|
|
6049
4625
|
content: {
|
|
6050
|
-
"application/json": components["schemas"]["
|
|
4626
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6051
4627
|
};
|
|
6052
4628
|
};
|
|
6053
4629
|
/** @description Insufficient permissions */
|
|
@@ -6056,7 +4632,7 @@ export interface operations {
|
|
|
6056
4632
|
[name: string]: unknown;
|
|
6057
4633
|
};
|
|
6058
4634
|
content: {
|
|
6059
|
-
"application/json": components["schemas"]["
|
|
4635
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6060
4636
|
};
|
|
6061
4637
|
};
|
|
6062
4638
|
/** @description Internal server error */
|
|
@@ -6065,7 +4641,7 @@ export interface operations {
|
|
|
6065
4641
|
[name: string]: unknown;
|
|
6066
4642
|
};
|
|
6067
4643
|
content: {
|
|
6068
|
-
"application/json": components["schemas"]["
|
|
4644
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6069
4645
|
};
|
|
6070
4646
|
};
|
|
6071
4647
|
};
|
|
@@ -6098,7 +4674,7 @@ export interface operations {
|
|
|
6098
4674
|
[name: string]: unknown;
|
|
6099
4675
|
};
|
|
6100
4676
|
content: {
|
|
6101
|
-
"application/json": components["schemas"]["
|
|
4677
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6102
4678
|
};
|
|
6103
4679
|
};
|
|
6104
4680
|
/** @description Not authenticated */
|
|
@@ -6107,7 +4683,7 @@ export interface operations {
|
|
|
6107
4683
|
[name: string]: unknown;
|
|
6108
4684
|
};
|
|
6109
4685
|
content: {
|
|
6110
|
-
"application/json": components["schemas"]["
|
|
4686
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6111
4687
|
};
|
|
6112
4688
|
};
|
|
6113
4689
|
/** @description Insufficient permissions */
|
|
@@ -6116,7 +4692,7 @@ export interface operations {
|
|
|
6116
4692
|
[name: string]: unknown;
|
|
6117
4693
|
};
|
|
6118
4694
|
content: {
|
|
6119
|
-
"application/json": components["schemas"]["
|
|
4695
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6120
4696
|
};
|
|
6121
4697
|
};
|
|
6122
4698
|
/** @description URL already exists */
|
|
@@ -6132,7 +4708,7 @@ export interface operations {
|
|
|
6132
4708
|
[name: string]: unknown;
|
|
6133
4709
|
};
|
|
6134
4710
|
content: {
|
|
6135
|
-
"application/json": components["schemas"]["
|
|
4711
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6136
4712
|
};
|
|
6137
4713
|
};
|
|
6138
4714
|
};
|
|
@@ -6164,7 +4740,7 @@ export interface operations {
|
|
|
6164
4740
|
[name: string]: unknown;
|
|
6165
4741
|
};
|
|
6166
4742
|
content: {
|
|
6167
|
-
"application/json": components["schemas"]["
|
|
4743
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6168
4744
|
};
|
|
6169
4745
|
};
|
|
6170
4746
|
/** @description Not authenticated */
|
|
@@ -6173,7 +4749,7 @@ export interface operations {
|
|
|
6173
4749
|
[name: string]: unknown;
|
|
6174
4750
|
};
|
|
6175
4751
|
content: {
|
|
6176
|
-
"application/json": components["schemas"]["
|
|
4752
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6177
4753
|
};
|
|
6178
4754
|
};
|
|
6179
4755
|
/** @description Insufficient permissions */
|
|
@@ -6182,7 +4758,7 @@ export interface operations {
|
|
|
6182
4758
|
[name: string]: unknown;
|
|
6183
4759
|
};
|
|
6184
4760
|
content: {
|
|
6185
|
-
"application/json": components["schemas"]["
|
|
4761
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6186
4762
|
};
|
|
6187
4763
|
};
|
|
6188
4764
|
/** @description Not found */
|
|
@@ -6198,7 +4774,7 @@ export interface operations {
|
|
|
6198
4774
|
[name: string]: unknown;
|
|
6199
4775
|
};
|
|
6200
4776
|
content: {
|
|
6201
|
-
"application/json": components["schemas"]["
|
|
4777
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6202
4778
|
};
|
|
6203
4779
|
};
|
|
6204
4780
|
};
|
|
@@ -6234,7 +4810,7 @@ export interface operations {
|
|
|
6234
4810
|
[name: string]: unknown;
|
|
6235
4811
|
};
|
|
6236
4812
|
content: {
|
|
6237
|
-
"application/json": components["schemas"]["
|
|
4813
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6238
4814
|
};
|
|
6239
4815
|
};
|
|
6240
4816
|
/** @description Not authenticated */
|
|
@@ -6243,7 +4819,7 @@ export interface operations {
|
|
|
6243
4819
|
[name: string]: unknown;
|
|
6244
4820
|
};
|
|
6245
4821
|
content: {
|
|
6246
|
-
"application/json": components["schemas"]["
|
|
4822
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6247
4823
|
};
|
|
6248
4824
|
};
|
|
6249
4825
|
/** @description Insufficient permissions */
|
|
@@ -6252,7 +4828,7 @@ export interface operations {
|
|
|
6252
4828
|
[name: string]: unknown;
|
|
6253
4829
|
};
|
|
6254
4830
|
content: {
|
|
6255
|
-
"application/json": components["schemas"]["
|
|
4831
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6256
4832
|
};
|
|
6257
4833
|
};
|
|
6258
4834
|
/** @description Not found */
|
|
@@ -6275,7 +4851,7 @@ export interface operations {
|
|
|
6275
4851
|
[name: string]: unknown;
|
|
6276
4852
|
};
|
|
6277
4853
|
content: {
|
|
6278
|
-
"application/json": components["schemas"]["
|
|
4854
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6279
4855
|
};
|
|
6280
4856
|
};
|
|
6281
4857
|
};
|
|
@@ -6307,7 +4883,7 @@ export interface operations {
|
|
|
6307
4883
|
[name: string]: unknown;
|
|
6308
4884
|
};
|
|
6309
4885
|
content: {
|
|
6310
|
-
"application/json": components["schemas"]["
|
|
4886
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6311
4887
|
};
|
|
6312
4888
|
};
|
|
6313
4889
|
/** @description Not authenticated */
|
|
@@ -6316,7 +4892,7 @@ export interface operations {
|
|
|
6316
4892
|
[name: string]: unknown;
|
|
6317
4893
|
};
|
|
6318
4894
|
content: {
|
|
6319
|
-
"application/json": components["schemas"]["
|
|
4895
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6320
4896
|
};
|
|
6321
4897
|
};
|
|
6322
4898
|
/** @description Insufficient permissions */
|
|
@@ -6325,7 +4901,7 @@ export interface operations {
|
|
|
6325
4901
|
[name: string]: unknown;
|
|
6326
4902
|
};
|
|
6327
4903
|
content: {
|
|
6328
|
-
"application/json": components["schemas"]["
|
|
4904
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6329
4905
|
};
|
|
6330
4906
|
};
|
|
6331
4907
|
/** @description MCP not found */
|
|
@@ -6341,7 +4917,7 @@ export interface operations {
|
|
|
6341
4917
|
[name: string]: unknown;
|
|
6342
4918
|
};
|
|
6343
4919
|
content: {
|
|
6344
|
-
"application/json": components["schemas"]["
|
|
4920
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6345
4921
|
};
|
|
6346
4922
|
};
|
|
6347
4923
|
};
|
|
@@ -6377,7 +4953,7 @@ export interface operations {
|
|
|
6377
4953
|
[name: string]: unknown;
|
|
6378
4954
|
};
|
|
6379
4955
|
content: {
|
|
6380
|
-
"application/json": components["schemas"]["
|
|
4956
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6381
4957
|
};
|
|
6382
4958
|
};
|
|
6383
4959
|
/** @description Not authenticated */
|
|
@@ -6386,7 +4962,7 @@ export interface operations {
|
|
|
6386
4962
|
[name: string]: unknown;
|
|
6387
4963
|
};
|
|
6388
4964
|
content: {
|
|
6389
|
-
"application/json": components["schemas"]["
|
|
4965
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6390
4966
|
};
|
|
6391
4967
|
};
|
|
6392
4968
|
/** @description Insufficient permissions */
|
|
@@ -6395,7 +4971,7 @@ export interface operations {
|
|
|
6395
4971
|
[name: string]: unknown;
|
|
6396
4972
|
};
|
|
6397
4973
|
content: {
|
|
6398
|
-
"application/json": components["schemas"]["
|
|
4974
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6399
4975
|
};
|
|
6400
4976
|
};
|
|
6401
4977
|
/** @description MCP not found */
|
|
@@ -6411,7 +4987,7 @@ export interface operations {
|
|
|
6411
4987
|
[name: string]: unknown;
|
|
6412
4988
|
};
|
|
6413
4989
|
content: {
|
|
6414
|
-
"application/json": components["schemas"]["
|
|
4990
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6415
4991
|
};
|
|
6416
4992
|
};
|
|
6417
4993
|
};
|
|
@@ -6441,7 +5017,7 @@ export interface operations {
|
|
|
6441
5017
|
[name: string]: unknown;
|
|
6442
5018
|
};
|
|
6443
5019
|
content: {
|
|
6444
|
-
"application/json": components["schemas"]["
|
|
5020
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6445
5021
|
};
|
|
6446
5022
|
};
|
|
6447
5023
|
/** @description Not authenticated */
|
|
@@ -6450,7 +5026,7 @@ export interface operations {
|
|
|
6450
5026
|
[name: string]: unknown;
|
|
6451
5027
|
};
|
|
6452
5028
|
content: {
|
|
6453
|
-
"application/json": components["schemas"]["
|
|
5029
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6454
5030
|
};
|
|
6455
5031
|
};
|
|
6456
5032
|
/** @description Insufficient permissions */
|
|
@@ -6459,7 +5035,7 @@ export interface operations {
|
|
|
6459
5035
|
[name: string]: unknown;
|
|
6460
5036
|
};
|
|
6461
5037
|
content: {
|
|
6462
|
-
"application/json": components["schemas"]["
|
|
5038
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6463
5039
|
};
|
|
6464
5040
|
};
|
|
6465
5041
|
/** @description MCP not found */
|
|
@@ -6475,7 +5051,7 @@ export interface operations {
|
|
|
6475
5051
|
[name: string]: unknown;
|
|
6476
5052
|
};
|
|
6477
5053
|
content: {
|
|
6478
|
-
"application/json": components["schemas"]["
|
|
5054
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6479
5055
|
};
|
|
6480
5056
|
};
|
|
6481
5057
|
};
|
|
@@ -6554,7 +5130,7 @@ export interface operations {
|
|
|
6554
5130
|
[name: string]: unknown;
|
|
6555
5131
|
};
|
|
6556
5132
|
content: {
|
|
6557
|
-
"application/json": components["schemas"]["
|
|
5133
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6558
5134
|
};
|
|
6559
5135
|
};
|
|
6560
5136
|
/** @description Not authenticated */
|
|
@@ -6563,7 +5139,7 @@ export interface operations {
|
|
|
6563
5139
|
[name: string]: unknown;
|
|
6564
5140
|
};
|
|
6565
5141
|
content: {
|
|
6566
|
-
"application/json": components["schemas"]["
|
|
5142
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6567
5143
|
};
|
|
6568
5144
|
};
|
|
6569
5145
|
/** @description Insufficient permissions */
|
|
@@ -6572,7 +5148,7 @@ export interface operations {
|
|
|
6572
5148
|
[name: string]: unknown;
|
|
6573
5149
|
};
|
|
6574
5150
|
content: {
|
|
6575
|
-
"application/json": components["schemas"]["
|
|
5151
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6576
5152
|
};
|
|
6577
5153
|
};
|
|
6578
5154
|
/** @description Internal server error */
|
|
@@ -6581,7 +5157,7 @@ export interface operations {
|
|
|
6581
5157
|
[name: string]: unknown;
|
|
6582
5158
|
};
|
|
6583
5159
|
content: {
|
|
6584
|
-
"application/json": components["schemas"]["
|
|
5160
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6585
5161
|
};
|
|
6586
5162
|
};
|
|
6587
5163
|
};
|
|
@@ -6614,7 +5190,7 @@ export interface operations {
|
|
|
6614
5190
|
[name: string]: unknown;
|
|
6615
5191
|
};
|
|
6616
5192
|
content: {
|
|
6617
|
-
"application/json": components["schemas"]["
|
|
5193
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6618
5194
|
};
|
|
6619
5195
|
};
|
|
6620
5196
|
/** @description Not authenticated */
|
|
@@ -6623,7 +5199,7 @@ export interface operations {
|
|
|
6623
5199
|
[name: string]: unknown;
|
|
6624
5200
|
};
|
|
6625
5201
|
content: {
|
|
6626
|
-
"application/json": components["schemas"]["
|
|
5202
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6627
5203
|
};
|
|
6628
5204
|
};
|
|
6629
5205
|
/** @description Insufficient permissions */
|
|
@@ -6632,7 +5208,7 @@ export interface operations {
|
|
|
6632
5208
|
[name: string]: unknown;
|
|
6633
5209
|
};
|
|
6634
5210
|
content: {
|
|
6635
|
-
"application/json": components["schemas"]["
|
|
5211
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6636
5212
|
};
|
|
6637
5213
|
};
|
|
6638
5214
|
/** @description Internal server error */
|
|
@@ -6641,7 +5217,7 @@ export interface operations {
|
|
|
6641
5217
|
[name: string]: unknown;
|
|
6642
5218
|
};
|
|
6643
5219
|
content: {
|
|
6644
|
-
"application/json": components["schemas"]["
|
|
5220
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6645
5221
|
};
|
|
6646
5222
|
};
|
|
6647
5223
|
};
|
|
@@ -6677,7 +5253,7 @@ export interface operations {
|
|
|
6677
5253
|
[name: string]: unknown;
|
|
6678
5254
|
};
|
|
6679
5255
|
content: {
|
|
6680
|
-
"application/json": components["schemas"]["
|
|
5256
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6681
5257
|
};
|
|
6682
5258
|
};
|
|
6683
5259
|
/** @description Not authenticated */
|
|
@@ -6686,7 +5262,7 @@ export interface operations {
|
|
|
6686
5262
|
[name: string]: unknown;
|
|
6687
5263
|
};
|
|
6688
5264
|
content: {
|
|
6689
|
-
"application/json": components["schemas"]["
|
|
5265
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6690
5266
|
};
|
|
6691
5267
|
};
|
|
6692
5268
|
/** @description Insufficient permissions */
|
|
@@ -6695,7 +5271,7 @@ export interface operations {
|
|
|
6695
5271
|
[name: string]: unknown;
|
|
6696
5272
|
};
|
|
6697
5273
|
content: {
|
|
6698
|
-
"application/json": components["schemas"]["
|
|
5274
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6699
5275
|
};
|
|
6700
5276
|
};
|
|
6701
5277
|
/** @description Internal server error */
|
|
@@ -6704,7 +5280,7 @@ export interface operations {
|
|
|
6704
5280
|
[name: string]: unknown;
|
|
6705
5281
|
};
|
|
6706
5282
|
content: {
|
|
6707
|
-
"application/json": components["schemas"]["
|
|
5283
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6708
5284
|
};
|
|
6709
5285
|
};
|
|
6710
5286
|
};
|
|
@@ -6734,7 +5310,7 @@ export interface operations {
|
|
|
6734
5310
|
[name: string]: unknown;
|
|
6735
5311
|
};
|
|
6736
5312
|
content: {
|
|
6737
|
-
"application/json": components["schemas"]["
|
|
5313
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6738
5314
|
};
|
|
6739
5315
|
};
|
|
6740
5316
|
/** @description Not authenticated */
|
|
@@ -6743,7 +5319,7 @@ export interface operations {
|
|
|
6743
5319
|
[name: string]: unknown;
|
|
6744
5320
|
};
|
|
6745
5321
|
content: {
|
|
6746
|
-
"application/json": components["schemas"]["
|
|
5322
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6747
5323
|
};
|
|
6748
5324
|
};
|
|
6749
5325
|
/** @description Insufficient permissions */
|
|
@@ -6752,7 +5328,7 @@ export interface operations {
|
|
|
6752
5328
|
[name: string]: unknown;
|
|
6753
5329
|
};
|
|
6754
5330
|
content: {
|
|
6755
|
-
"application/json": components["schemas"]["
|
|
5331
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6756
5332
|
};
|
|
6757
5333
|
};
|
|
6758
5334
|
/** @description Alias not found */
|
|
@@ -6768,7 +5344,7 @@ export interface operations {
|
|
|
6768
5344
|
[name: string]: unknown;
|
|
6769
5345
|
};
|
|
6770
5346
|
content: {
|
|
6771
|
-
"application/json": components["schemas"]["
|
|
5347
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6772
5348
|
};
|
|
6773
5349
|
};
|
|
6774
5350
|
};
|
|
@@ -6804,7 +5380,7 @@ export interface operations {
|
|
|
6804
5380
|
[name: string]: unknown;
|
|
6805
5381
|
};
|
|
6806
5382
|
content: {
|
|
6807
|
-
"application/json": components["schemas"]["
|
|
5383
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6808
5384
|
};
|
|
6809
5385
|
};
|
|
6810
5386
|
/** @description Not authenticated */
|
|
@@ -6813,7 +5389,7 @@ export interface operations {
|
|
|
6813
5389
|
[name: string]: unknown;
|
|
6814
5390
|
};
|
|
6815
5391
|
content: {
|
|
6816
|
-
"application/json": components["schemas"]["
|
|
5392
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6817
5393
|
};
|
|
6818
5394
|
};
|
|
6819
5395
|
/** @description Insufficient permissions */
|
|
@@ -6822,7 +5398,7 @@ export interface operations {
|
|
|
6822
5398
|
[name: string]: unknown;
|
|
6823
5399
|
};
|
|
6824
5400
|
content: {
|
|
6825
|
-
"application/json": components["schemas"]["
|
|
5401
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6826
5402
|
};
|
|
6827
5403
|
};
|
|
6828
5404
|
/** @description Source alias not found */
|
|
@@ -6838,7 +5414,7 @@ export interface operations {
|
|
|
6838
5414
|
[name: string]: unknown;
|
|
6839
5415
|
};
|
|
6840
5416
|
content: {
|
|
6841
|
-
"application/json": components["schemas"]["
|
|
5417
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6842
5418
|
};
|
|
6843
5419
|
};
|
|
6844
5420
|
};
|
|
@@ -6871,7 +5447,7 @@ export interface operations {
|
|
|
6871
5447
|
[name: string]: unknown;
|
|
6872
5448
|
};
|
|
6873
5449
|
content: {
|
|
6874
|
-
"application/json": components["schemas"]["
|
|
5450
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6875
5451
|
};
|
|
6876
5452
|
};
|
|
6877
5453
|
/** @description Not authenticated */
|
|
@@ -6880,7 +5456,7 @@ export interface operations {
|
|
|
6880
5456
|
[name: string]: unknown;
|
|
6881
5457
|
};
|
|
6882
5458
|
content: {
|
|
6883
|
-
"application/json": components["schemas"]["
|
|
5459
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6884
5460
|
};
|
|
6885
5461
|
};
|
|
6886
5462
|
/** @description Insufficient permissions */
|
|
@@ -6889,7 +5465,7 @@ export interface operations {
|
|
|
6889
5465
|
[name: string]: unknown;
|
|
6890
5466
|
};
|
|
6891
5467
|
content: {
|
|
6892
|
-
"application/json": components["schemas"]["
|
|
5468
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6893
5469
|
};
|
|
6894
5470
|
};
|
|
6895
5471
|
/** @description Alias already exists */
|
|
@@ -6898,7 +5474,7 @@ export interface operations {
|
|
|
6898
5474
|
[name: string]: unknown;
|
|
6899
5475
|
};
|
|
6900
5476
|
content: {
|
|
6901
|
-
"application/json": components["schemas"]["
|
|
5477
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6902
5478
|
};
|
|
6903
5479
|
};
|
|
6904
5480
|
/** @description Internal server error */
|
|
@@ -6907,7 +5483,7 @@ export interface operations {
|
|
|
6907
5483
|
[name: string]: unknown;
|
|
6908
5484
|
};
|
|
6909
5485
|
content: {
|
|
6910
|
-
"application/json": components["schemas"]["
|
|
5486
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6911
5487
|
};
|
|
6912
5488
|
};
|
|
6913
5489
|
};
|
|
@@ -6940,7 +5516,7 @@ export interface operations {
|
|
|
6940
5516
|
[name: string]: unknown;
|
|
6941
5517
|
};
|
|
6942
5518
|
content: {
|
|
6943
|
-
"application/json": components["schemas"]["
|
|
5519
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6944
5520
|
};
|
|
6945
5521
|
};
|
|
6946
5522
|
/** @description Not authenticated */
|
|
@@ -6949,7 +5525,7 @@ export interface operations {
|
|
|
6949
5525
|
[name: string]: unknown;
|
|
6950
5526
|
};
|
|
6951
5527
|
content: {
|
|
6952
|
-
"application/json": components["schemas"]["
|
|
5528
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6953
5529
|
};
|
|
6954
5530
|
};
|
|
6955
5531
|
/** @description Insufficient permissions */
|
|
@@ -6958,7 +5534,7 @@ export interface operations {
|
|
|
6958
5534
|
[name: string]: unknown;
|
|
6959
5535
|
};
|
|
6960
5536
|
content: {
|
|
6961
|
-
"application/json": components["schemas"]["
|
|
5537
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6962
5538
|
};
|
|
6963
5539
|
};
|
|
6964
5540
|
/** @description Internal server error */
|
|
@@ -6967,7 +5543,7 @@ export interface operations {
|
|
|
6967
5543
|
[name: string]: unknown;
|
|
6968
5544
|
};
|
|
6969
5545
|
content: {
|
|
6970
|
-
"application/json": components["schemas"]["
|
|
5546
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
6971
5547
|
};
|
|
6972
5548
|
};
|
|
6973
5549
|
};
|
|
@@ -6989,7 +5565,8 @@ export interface operations {
|
|
|
6989
5565
|
content: {
|
|
6990
5566
|
/** @example {
|
|
6991
5567
|
* "data": [
|
|
6992
|
-
* "openai"
|
|
5568
|
+
* "openai",
|
|
5569
|
+
* "openai_responses"
|
|
6993
5570
|
* ]
|
|
6994
5571
|
* } */
|
|
6995
5572
|
"application/json": components["schemas"]["ApiFormatsResponse"];
|
|
@@ -7001,7 +5578,7 @@ export interface operations {
|
|
|
7001
5578
|
[name: string]: unknown;
|
|
7002
5579
|
};
|
|
7003
5580
|
content: {
|
|
7004
|
-
"application/json": components["schemas"]["
|
|
5581
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7005
5582
|
};
|
|
7006
5583
|
};
|
|
7007
5584
|
/** @description Not authenticated */
|
|
@@ -7010,7 +5587,7 @@ export interface operations {
|
|
|
7010
5587
|
[name: string]: unknown;
|
|
7011
5588
|
};
|
|
7012
5589
|
content: {
|
|
7013
|
-
"application/json": components["schemas"]["
|
|
5590
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7014
5591
|
};
|
|
7015
5592
|
};
|
|
7016
5593
|
/** @description Insufficient permissions */
|
|
@@ -7019,7 +5596,7 @@ export interface operations {
|
|
|
7019
5596
|
[name: string]: unknown;
|
|
7020
5597
|
};
|
|
7021
5598
|
content: {
|
|
7022
|
-
"application/json": components["schemas"]["
|
|
5599
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7023
5600
|
};
|
|
7024
5601
|
};
|
|
7025
5602
|
/** @description Internal server error */
|
|
@@ -7028,7 +5605,7 @@ export interface operations {
|
|
|
7028
5605
|
[name: string]: unknown;
|
|
7029
5606
|
};
|
|
7030
5607
|
content: {
|
|
7031
|
-
"application/json": components["schemas"]["
|
|
5608
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7032
5609
|
};
|
|
7033
5610
|
};
|
|
7034
5611
|
};
|
|
@@ -7061,7 +5638,7 @@ export interface operations {
|
|
|
7061
5638
|
[name: string]: unknown;
|
|
7062
5639
|
};
|
|
7063
5640
|
content: {
|
|
7064
|
-
"application/json": components["schemas"]["
|
|
5641
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7065
5642
|
};
|
|
7066
5643
|
};
|
|
7067
5644
|
/** @description Not authenticated */
|
|
@@ -7070,7 +5647,7 @@ export interface operations {
|
|
|
7070
5647
|
[name: string]: unknown;
|
|
7071
5648
|
};
|
|
7072
5649
|
content: {
|
|
7073
|
-
"application/json": components["schemas"]["
|
|
5650
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7074
5651
|
};
|
|
7075
5652
|
};
|
|
7076
5653
|
/** @description Insufficient permissions */
|
|
@@ -7079,7 +5656,7 @@ export interface operations {
|
|
|
7079
5656
|
[name: string]: unknown;
|
|
7080
5657
|
};
|
|
7081
5658
|
content: {
|
|
7082
|
-
"application/json": components["schemas"]["
|
|
5659
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7083
5660
|
};
|
|
7084
5661
|
};
|
|
7085
5662
|
/** @description Internal server error */
|
|
@@ -7088,7 +5665,7 @@ export interface operations {
|
|
|
7088
5665
|
[name: string]: unknown;
|
|
7089
5666
|
};
|
|
7090
5667
|
content: {
|
|
7091
|
-
"application/json": components["schemas"]["
|
|
5668
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7092
5669
|
};
|
|
7093
5670
|
};
|
|
7094
5671
|
};
|
|
@@ -7132,7 +5709,7 @@ export interface operations {
|
|
|
7132
5709
|
[name: string]: unknown;
|
|
7133
5710
|
};
|
|
7134
5711
|
content: {
|
|
7135
|
-
"application/json": components["schemas"]["
|
|
5712
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7136
5713
|
};
|
|
7137
5714
|
};
|
|
7138
5715
|
/** @description Not authenticated */
|
|
@@ -7141,7 +5718,7 @@ export interface operations {
|
|
|
7141
5718
|
[name: string]: unknown;
|
|
7142
5719
|
};
|
|
7143
5720
|
content: {
|
|
7144
|
-
"application/json": components["schemas"]["
|
|
5721
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7145
5722
|
};
|
|
7146
5723
|
};
|
|
7147
5724
|
/** @description Insufficient permissions */
|
|
@@ -7150,7 +5727,7 @@ export interface operations {
|
|
|
7150
5727
|
[name: string]: unknown;
|
|
7151
5728
|
};
|
|
7152
5729
|
content: {
|
|
7153
|
-
"application/json": components["schemas"]["
|
|
5730
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7154
5731
|
};
|
|
7155
5732
|
};
|
|
7156
5733
|
/** @description API model with specified ID not found */
|
|
@@ -7166,7 +5743,7 @@ export interface operations {
|
|
|
7166
5743
|
* "type": "not_found_error"
|
|
7167
5744
|
* }
|
|
7168
5745
|
* } */
|
|
7169
|
-
"application/json": components["schemas"]["
|
|
5746
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7170
5747
|
};
|
|
7171
5748
|
};
|
|
7172
5749
|
/** @description Internal server error */
|
|
@@ -7175,7 +5752,7 @@ export interface operations {
|
|
|
7175
5752
|
[name: string]: unknown;
|
|
7176
5753
|
};
|
|
7177
5754
|
content: {
|
|
7178
|
-
"application/json": components["schemas"]["
|
|
5755
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7179
5756
|
};
|
|
7180
5757
|
};
|
|
7181
5758
|
};
|
|
@@ -7211,7 +5788,7 @@ export interface operations {
|
|
|
7211
5788
|
[name: string]: unknown;
|
|
7212
5789
|
};
|
|
7213
5790
|
content: {
|
|
7214
|
-
"application/json": components["schemas"]["
|
|
5791
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7215
5792
|
};
|
|
7216
5793
|
};
|
|
7217
5794
|
/** @description Not authenticated */
|
|
@@ -7220,7 +5797,7 @@ export interface operations {
|
|
|
7220
5797
|
[name: string]: unknown;
|
|
7221
5798
|
};
|
|
7222
5799
|
content: {
|
|
7223
|
-
"application/json": components["schemas"]["
|
|
5800
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7224
5801
|
};
|
|
7225
5802
|
};
|
|
7226
5803
|
/** @description Insufficient permissions */
|
|
@@ -7229,7 +5806,7 @@ export interface operations {
|
|
|
7229
5806
|
[name: string]: unknown;
|
|
7230
5807
|
};
|
|
7231
5808
|
content: {
|
|
7232
|
-
"application/json": components["schemas"]["
|
|
5809
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7233
5810
|
};
|
|
7234
5811
|
};
|
|
7235
5812
|
/** @description API model not found */
|
|
@@ -7238,7 +5815,7 @@ export interface operations {
|
|
|
7238
5815
|
[name: string]: unknown;
|
|
7239
5816
|
};
|
|
7240
5817
|
content: {
|
|
7241
|
-
"application/json": components["schemas"]["
|
|
5818
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7242
5819
|
};
|
|
7243
5820
|
};
|
|
7244
5821
|
/** @description Internal server error */
|
|
@@ -7247,7 +5824,7 @@ export interface operations {
|
|
|
7247
5824
|
[name: string]: unknown;
|
|
7248
5825
|
};
|
|
7249
5826
|
content: {
|
|
7250
|
-
"application/json": components["schemas"]["
|
|
5827
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7251
5828
|
};
|
|
7252
5829
|
};
|
|
7253
5830
|
};
|
|
@@ -7277,7 +5854,7 @@ export interface operations {
|
|
|
7277
5854
|
[name: string]: unknown;
|
|
7278
5855
|
};
|
|
7279
5856
|
content: {
|
|
7280
|
-
"application/json": components["schemas"]["
|
|
5857
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7281
5858
|
};
|
|
7282
5859
|
};
|
|
7283
5860
|
/** @description Not authenticated */
|
|
@@ -7286,7 +5863,7 @@ export interface operations {
|
|
|
7286
5863
|
[name: string]: unknown;
|
|
7287
5864
|
};
|
|
7288
5865
|
content: {
|
|
7289
|
-
"application/json": components["schemas"]["
|
|
5866
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7290
5867
|
};
|
|
7291
5868
|
};
|
|
7292
5869
|
/** @description Insufficient permissions */
|
|
@@ -7295,7 +5872,7 @@ export interface operations {
|
|
|
7295
5872
|
[name: string]: unknown;
|
|
7296
5873
|
};
|
|
7297
5874
|
content: {
|
|
7298
|
-
"application/json": components["schemas"]["
|
|
5875
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7299
5876
|
};
|
|
7300
5877
|
};
|
|
7301
5878
|
/** @description API model not found */
|
|
@@ -7304,7 +5881,7 @@ export interface operations {
|
|
|
7304
5881
|
[name: string]: unknown;
|
|
7305
5882
|
};
|
|
7306
5883
|
content: {
|
|
7307
|
-
"application/json": components["schemas"]["
|
|
5884
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7308
5885
|
};
|
|
7309
5886
|
};
|
|
7310
5887
|
/** @description Internal server error */
|
|
@@ -7313,7 +5890,7 @@ export interface operations {
|
|
|
7313
5890
|
[name: string]: unknown;
|
|
7314
5891
|
};
|
|
7315
5892
|
content: {
|
|
7316
|
-
"application/json": components["schemas"]["
|
|
5893
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7317
5894
|
};
|
|
7318
5895
|
};
|
|
7319
5896
|
};
|
|
@@ -7363,7 +5940,7 @@ export interface operations {
|
|
|
7363
5940
|
[name: string]: unknown;
|
|
7364
5941
|
};
|
|
7365
5942
|
content: {
|
|
7366
|
-
"application/json": components["schemas"]["
|
|
5943
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7367
5944
|
};
|
|
7368
5945
|
};
|
|
7369
5946
|
/** @description Not authenticated */
|
|
@@ -7372,7 +5949,7 @@ export interface operations {
|
|
|
7372
5949
|
[name: string]: unknown;
|
|
7373
5950
|
};
|
|
7374
5951
|
content: {
|
|
7375
|
-
"application/json": components["schemas"]["
|
|
5952
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7376
5953
|
};
|
|
7377
5954
|
};
|
|
7378
5955
|
/** @description Insufficient permissions */
|
|
@@ -7381,7 +5958,7 @@ export interface operations {
|
|
|
7381
5958
|
[name: string]: unknown;
|
|
7382
5959
|
};
|
|
7383
5960
|
content: {
|
|
7384
|
-
"application/json": components["schemas"]["
|
|
5961
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7385
5962
|
};
|
|
7386
5963
|
};
|
|
7387
5964
|
/** @description API model not found */
|
|
@@ -7397,7 +5974,7 @@ export interface operations {
|
|
|
7397
5974
|
[name: string]: unknown;
|
|
7398
5975
|
};
|
|
7399
5976
|
content: {
|
|
7400
|
-
"application/json": components["schemas"]["
|
|
5977
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7401
5978
|
};
|
|
7402
5979
|
};
|
|
7403
5980
|
};
|
|
@@ -7448,7 +6025,7 @@ export interface operations {
|
|
|
7448
6025
|
[name: string]: unknown;
|
|
7449
6026
|
};
|
|
7450
6027
|
content: {
|
|
7451
|
-
"application/json": components["schemas"]["
|
|
6028
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7452
6029
|
};
|
|
7453
6030
|
};
|
|
7454
6031
|
/** @description Not authenticated */
|
|
@@ -7457,7 +6034,7 @@ export interface operations {
|
|
|
7457
6034
|
[name: string]: unknown;
|
|
7458
6035
|
};
|
|
7459
6036
|
content: {
|
|
7460
|
-
"application/json": components["schemas"]["
|
|
6037
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7461
6038
|
};
|
|
7462
6039
|
};
|
|
7463
6040
|
/** @description Insufficient permissions */
|
|
@@ -7466,7 +6043,7 @@ export interface operations {
|
|
|
7466
6043
|
[name: string]: unknown;
|
|
7467
6044
|
};
|
|
7468
6045
|
content: {
|
|
7469
|
-
"application/json": components["schemas"]["
|
|
6046
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7470
6047
|
};
|
|
7471
6048
|
};
|
|
7472
6049
|
/** @description Internal server error */
|
|
@@ -7475,7 +6052,7 @@ export interface operations {
|
|
|
7475
6052
|
[name: string]: unknown;
|
|
7476
6053
|
};
|
|
7477
6054
|
content: {
|
|
7478
|
-
"application/json": components["schemas"]["
|
|
6055
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7479
6056
|
};
|
|
7480
6057
|
};
|
|
7481
6058
|
};
|
|
@@ -7529,7 +6106,7 @@ export interface operations {
|
|
|
7529
6106
|
[name: string]: unknown;
|
|
7530
6107
|
};
|
|
7531
6108
|
content: {
|
|
7532
|
-
"application/json": components["schemas"]["
|
|
6109
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7533
6110
|
};
|
|
7534
6111
|
};
|
|
7535
6112
|
/** @description Not authenticated */
|
|
@@ -7538,7 +6115,7 @@ export interface operations {
|
|
|
7538
6115
|
[name: string]: unknown;
|
|
7539
6116
|
};
|
|
7540
6117
|
content: {
|
|
7541
|
-
"application/json": components["schemas"]["
|
|
6118
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7542
6119
|
};
|
|
7543
6120
|
};
|
|
7544
6121
|
/** @description Insufficient permissions */
|
|
@@ -7547,7 +6124,7 @@ export interface operations {
|
|
|
7547
6124
|
[name: string]: unknown;
|
|
7548
6125
|
};
|
|
7549
6126
|
content: {
|
|
7550
|
-
"application/json": components["schemas"]["
|
|
6127
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7551
6128
|
};
|
|
7552
6129
|
};
|
|
7553
6130
|
/** @description Internal server error */
|
|
@@ -7556,7 +6133,7 @@ export interface operations {
|
|
|
7556
6133
|
[name: string]: unknown;
|
|
7557
6134
|
};
|
|
7558
6135
|
content: {
|
|
7559
|
-
"application/json": components["schemas"]["
|
|
6136
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7560
6137
|
};
|
|
7561
6138
|
};
|
|
7562
6139
|
};
|
|
@@ -7621,7 +6198,7 @@ export interface operations {
|
|
|
7621
6198
|
[name: string]: unknown;
|
|
7622
6199
|
};
|
|
7623
6200
|
content: {
|
|
7624
|
-
"application/json": components["schemas"]["
|
|
6201
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7625
6202
|
};
|
|
7626
6203
|
};
|
|
7627
6204
|
/** @description Not authenticated */
|
|
@@ -7630,7 +6207,7 @@ export interface operations {
|
|
|
7630
6207
|
[name: string]: unknown;
|
|
7631
6208
|
};
|
|
7632
6209
|
content: {
|
|
7633
|
-
"application/json": components["schemas"]["
|
|
6210
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7634
6211
|
};
|
|
7635
6212
|
};
|
|
7636
6213
|
/** @description Insufficient permissions */
|
|
@@ -7639,7 +6216,7 @@ export interface operations {
|
|
|
7639
6216
|
[name: string]: unknown;
|
|
7640
6217
|
};
|
|
7641
6218
|
content: {
|
|
7642
|
-
"application/json": components["schemas"]["
|
|
6219
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7643
6220
|
};
|
|
7644
6221
|
};
|
|
7645
6222
|
/** @description Internal server error */
|
|
@@ -7648,7 +6225,7 @@ export interface operations {
|
|
|
7648
6225
|
[name: string]: unknown;
|
|
7649
6226
|
};
|
|
7650
6227
|
content: {
|
|
7651
|
-
"application/json": components["schemas"]["
|
|
6228
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7652
6229
|
};
|
|
7653
6230
|
};
|
|
7654
6231
|
};
|
|
@@ -7692,7 +6269,7 @@ export interface operations {
|
|
|
7692
6269
|
[name: string]: unknown;
|
|
7693
6270
|
};
|
|
7694
6271
|
content: {
|
|
7695
|
-
"application/json": components["schemas"]["
|
|
6272
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7696
6273
|
};
|
|
7697
6274
|
};
|
|
7698
6275
|
/** @description Not authenticated */
|
|
@@ -7701,7 +6278,7 @@ export interface operations {
|
|
|
7701
6278
|
[name: string]: unknown;
|
|
7702
6279
|
};
|
|
7703
6280
|
content: {
|
|
7704
|
-
"application/json": components["schemas"]["
|
|
6281
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7705
6282
|
};
|
|
7706
6283
|
};
|
|
7707
6284
|
/** @description Insufficient permissions */
|
|
@@ -7710,7 +6287,7 @@ export interface operations {
|
|
|
7710
6287
|
[name: string]: unknown;
|
|
7711
6288
|
};
|
|
7712
6289
|
content: {
|
|
7713
|
-
"application/json": components["schemas"]["
|
|
6290
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7714
6291
|
};
|
|
7715
6292
|
};
|
|
7716
6293
|
/** @description Download request not found */
|
|
@@ -7726,7 +6303,7 @@ export interface operations {
|
|
|
7726
6303
|
* "type": "not_found_error"
|
|
7727
6304
|
* }
|
|
7728
6305
|
* } */
|
|
7729
|
-
"application/json": components["schemas"]["
|
|
6306
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7730
6307
|
};
|
|
7731
6308
|
};
|
|
7732
6309
|
/** @description Internal server error */
|
|
@@ -7735,7 +6312,7 @@ export interface operations {
|
|
|
7735
6312
|
[name: string]: unknown;
|
|
7736
6313
|
};
|
|
7737
6314
|
content: {
|
|
7738
|
-
"application/json": components["schemas"]["
|
|
6315
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7739
6316
|
};
|
|
7740
6317
|
};
|
|
7741
6318
|
};
|
|
@@ -7781,7 +6358,7 @@ export interface operations {
|
|
|
7781
6358
|
[name: string]: unknown;
|
|
7782
6359
|
};
|
|
7783
6360
|
content: {
|
|
7784
|
-
"application/json": components["schemas"]["
|
|
6361
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7785
6362
|
};
|
|
7786
6363
|
};
|
|
7787
6364
|
/** @description Not authenticated */
|
|
@@ -7790,7 +6367,7 @@ export interface operations {
|
|
|
7790
6367
|
[name: string]: unknown;
|
|
7791
6368
|
};
|
|
7792
6369
|
content: {
|
|
7793
|
-
"application/json": components["schemas"]["
|
|
6370
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7794
6371
|
};
|
|
7795
6372
|
};
|
|
7796
6373
|
/** @description Insufficient permissions */
|
|
@@ -7799,7 +6376,7 @@ export interface operations {
|
|
|
7799
6376
|
[name: string]: unknown;
|
|
7800
6377
|
};
|
|
7801
6378
|
content: {
|
|
7802
|
-
"application/json": components["schemas"]["
|
|
6379
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7803
6380
|
};
|
|
7804
6381
|
};
|
|
7805
6382
|
/** @description Model alias not found for specified repo/filename/snapshot */
|
|
@@ -7815,7 +6392,7 @@ export interface operations {
|
|
|
7815
6392
|
[name: string]: unknown;
|
|
7816
6393
|
};
|
|
7817
6394
|
content: {
|
|
7818
|
-
"application/json": components["schemas"]["
|
|
6395
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7819
6396
|
};
|
|
7820
6397
|
};
|
|
7821
6398
|
};
|
|
@@ -7847,7 +6424,7 @@ export interface operations {
|
|
|
7847
6424
|
[name: string]: unknown;
|
|
7848
6425
|
};
|
|
7849
6426
|
content: {
|
|
7850
|
-
"application/json": components["schemas"]["
|
|
6427
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7851
6428
|
};
|
|
7852
6429
|
};
|
|
7853
6430
|
/** @description Not authenticated */
|
|
@@ -7856,7 +6433,7 @@ export interface operations {
|
|
|
7856
6433
|
[name: string]: unknown;
|
|
7857
6434
|
};
|
|
7858
6435
|
content: {
|
|
7859
|
-
"application/json": components["schemas"]["
|
|
6436
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7860
6437
|
};
|
|
7861
6438
|
};
|
|
7862
6439
|
/** @description Insufficient permissions */
|
|
@@ -7865,7 +6442,7 @@ export interface operations {
|
|
|
7865
6442
|
[name: string]: unknown;
|
|
7866
6443
|
};
|
|
7867
6444
|
content: {
|
|
7868
|
-
"application/json": components["schemas"]["
|
|
6445
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7869
6446
|
};
|
|
7870
6447
|
};
|
|
7871
6448
|
/** @description Alias not found */
|
|
@@ -7881,7 +6458,7 @@ export interface operations {
|
|
|
7881
6458
|
* "type": "not_found_error"
|
|
7882
6459
|
* }
|
|
7883
6460
|
* } */
|
|
7884
|
-
"application/json": components["schemas"]["
|
|
6461
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7885
6462
|
};
|
|
7886
6463
|
};
|
|
7887
6464
|
/** @description Internal server error */
|
|
@@ -7890,7 +6467,7 @@ export interface operations {
|
|
|
7890
6467
|
[name: string]: unknown;
|
|
7891
6468
|
};
|
|
7892
6469
|
content: {
|
|
7893
|
-
"application/json": components["schemas"]["
|
|
6470
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7894
6471
|
};
|
|
7895
6472
|
};
|
|
7896
6473
|
};
|
|
@@ -7922,7 +6499,7 @@ export interface operations {
|
|
|
7922
6499
|
[name: string]: unknown;
|
|
7923
6500
|
};
|
|
7924
6501
|
content: {
|
|
7925
|
-
"application/json": components["schemas"]["
|
|
6502
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7926
6503
|
};
|
|
7927
6504
|
};
|
|
7928
6505
|
/** @description Not authenticated */
|
|
@@ -7931,7 +6508,7 @@ export interface operations {
|
|
|
7931
6508
|
[name: string]: unknown;
|
|
7932
6509
|
};
|
|
7933
6510
|
content: {
|
|
7934
|
-
"application/json": components["schemas"]["
|
|
6511
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7935
6512
|
};
|
|
7936
6513
|
};
|
|
7937
6514
|
/** @description Insufficient permissions */
|
|
@@ -7940,7 +6517,7 @@ export interface operations {
|
|
|
7940
6517
|
[name: string]: unknown;
|
|
7941
6518
|
};
|
|
7942
6519
|
content: {
|
|
7943
|
-
"application/json": components["schemas"]["
|
|
6520
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7944
6521
|
};
|
|
7945
6522
|
};
|
|
7946
6523
|
/** @description Internal server error */
|
|
@@ -7949,7 +6526,7 @@ export interface operations {
|
|
|
7949
6526
|
[name: string]: unknown;
|
|
7950
6527
|
};
|
|
7951
6528
|
content: {
|
|
7952
|
-
"application/json": components["schemas"]["
|
|
6529
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
7953
6530
|
};
|
|
7954
6531
|
};
|
|
7955
6532
|
};
|
|
@@ -8007,7 +6584,7 @@ export interface operations {
|
|
|
8007
6584
|
[name: string]: unknown;
|
|
8008
6585
|
};
|
|
8009
6586
|
content: {
|
|
8010
|
-
"application/json": components["schemas"]["
|
|
6587
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8011
6588
|
};
|
|
8012
6589
|
};
|
|
8013
6590
|
/** @description Not authenticated */
|
|
@@ -8016,7 +6593,7 @@ export interface operations {
|
|
|
8016
6593
|
[name: string]: unknown;
|
|
8017
6594
|
};
|
|
8018
6595
|
content: {
|
|
8019
|
-
"application/json": components["schemas"]["
|
|
6596
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8020
6597
|
};
|
|
8021
6598
|
};
|
|
8022
6599
|
/** @description Insufficient permissions */
|
|
@@ -8025,7 +6602,7 @@ export interface operations {
|
|
|
8025
6602
|
[name: string]: unknown;
|
|
8026
6603
|
};
|
|
8027
6604
|
content: {
|
|
8028
|
-
"application/json": components["schemas"]["
|
|
6605
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8029
6606
|
};
|
|
8030
6607
|
};
|
|
8031
6608
|
/** @description Internal server error */
|
|
@@ -8034,7 +6611,7 @@ export interface operations {
|
|
|
8034
6611
|
[name: string]: unknown;
|
|
8035
6612
|
};
|
|
8036
6613
|
content: {
|
|
8037
|
-
"application/json": components["schemas"]["
|
|
6614
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8038
6615
|
};
|
|
8039
6616
|
};
|
|
8040
6617
|
};
|
|
@@ -8096,7 +6673,7 @@ export interface operations {
|
|
|
8096
6673
|
[name: string]: unknown;
|
|
8097
6674
|
};
|
|
8098
6675
|
content: {
|
|
8099
|
-
"application/json": components["schemas"]["
|
|
6676
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8100
6677
|
};
|
|
8101
6678
|
};
|
|
8102
6679
|
/** @description Not authenticated */
|
|
@@ -8105,7 +6682,7 @@ export interface operations {
|
|
|
8105
6682
|
[name: string]: unknown;
|
|
8106
6683
|
};
|
|
8107
6684
|
content: {
|
|
8108
|
-
"application/json": components["schemas"]["
|
|
6685
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8109
6686
|
};
|
|
8110
6687
|
};
|
|
8111
6688
|
/** @description Insufficient permissions */
|
|
@@ -8114,7 +6691,7 @@ export interface operations {
|
|
|
8114
6691
|
[name: string]: unknown;
|
|
8115
6692
|
};
|
|
8116
6693
|
content: {
|
|
8117
|
-
"application/json": components["schemas"]["
|
|
6694
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8118
6695
|
};
|
|
8119
6696
|
};
|
|
8120
6697
|
/** @description Setting not found */
|
|
@@ -8130,7 +6707,7 @@ export interface operations {
|
|
|
8130
6707
|
* "type": "not_found_error"
|
|
8131
6708
|
* }
|
|
8132
6709
|
* } */
|
|
8133
|
-
"application/json": components["schemas"]["
|
|
6710
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8134
6711
|
};
|
|
8135
6712
|
};
|
|
8136
6713
|
/** @description Internal server error */
|
|
@@ -8139,7 +6716,7 @@ export interface operations {
|
|
|
8139
6716
|
[name: string]: unknown;
|
|
8140
6717
|
};
|
|
8141
6718
|
content: {
|
|
8142
|
-
"application/json": components["schemas"]["
|
|
6719
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8143
6720
|
};
|
|
8144
6721
|
};
|
|
8145
6722
|
};
|
|
@@ -8190,7 +6767,7 @@ export interface operations {
|
|
|
8190
6767
|
[name: string]: unknown;
|
|
8191
6768
|
};
|
|
8192
6769
|
content: {
|
|
8193
|
-
"application/json": components["schemas"]["
|
|
6770
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8194
6771
|
};
|
|
8195
6772
|
};
|
|
8196
6773
|
/** @description Not authenticated */
|
|
@@ -8199,7 +6776,7 @@ export interface operations {
|
|
|
8199
6776
|
[name: string]: unknown;
|
|
8200
6777
|
};
|
|
8201
6778
|
content: {
|
|
8202
|
-
"application/json": components["schemas"]["
|
|
6779
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8203
6780
|
};
|
|
8204
6781
|
};
|
|
8205
6782
|
/** @description Insufficient permissions */
|
|
@@ -8208,7 +6785,7 @@ export interface operations {
|
|
|
8208
6785
|
[name: string]: unknown;
|
|
8209
6786
|
};
|
|
8210
6787
|
content: {
|
|
8211
|
-
"application/json": components["schemas"]["
|
|
6788
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8212
6789
|
};
|
|
8213
6790
|
};
|
|
8214
6791
|
/** @description Setting not found */
|
|
@@ -8224,7 +6801,7 @@ export interface operations {
|
|
|
8224
6801
|
* "type": "not_found_error"
|
|
8225
6802
|
* }
|
|
8226
6803
|
* } */
|
|
8227
|
-
"application/json": components["schemas"]["
|
|
6804
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8228
6805
|
};
|
|
8229
6806
|
};
|
|
8230
6807
|
/** @description Internal server error */
|
|
@@ -8233,7 +6810,7 @@ export interface operations {
|
|
|
8233
6810
|
[name: string]: unknown;
|
|
8234
6811
|
};
|
|
8235
6812
|
content: {
|
|
8236
|
-
"application/json": components["schemas"]["
|
|
6813
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8237
6814
|
};
|
|
8238
6815
|
};
|
|
8239
6816
|
};
|
|
@@ -8274,7 +6851,7 @@ export interface operations {
|
|
|
8274
6851
|
[name: string]: unknown;
|
|
8275
6852
|
};
|
|
8276
6853
|
content: {
|
|
8277
|
-
"application/json": components["schemas"]["
|
|
6854
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8278
6855
|
};
|
|
8279
6856
|
};
|
|
8280
6857
|
/** @description Internal server error */
|
|
@@ -8283,7 +6860,7 @@ export interface operations {
|
|
|
8283
6860
|
[name: string]: unknown;
|
|
8284
6861
|
};
|
|
8285
6862
|
content: {
|
|
8286
|
-
"application/json": components["schemas"]["
|
|
6863
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8287
6864
|
};
|
|
8288
6865
|
};
|
|
8289
6866
|
};
|
|
@@ -8312,7 +6889,7 @@ export interface operations {
|
|
|
8312
6889
|
[name: string]: unknown;
|
|
8313
6890
|
};
|
|
8314
6891
|
content: {
|
|
8315
|
-
"application/json": components["schemas"]["
|
|
6892
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8316
6893
|
};
|
|
8317
6894
|
};
|
|
8318
6895
|
/** @description Not authenticated */
|
|
@@ -8321,7 +6898,7 @@ export interface operations {
|
|
|
8321
6898
|
[name: string]: unknown;
|
|
8322
6899
|
};
|
|
8323
6900
|
content: {
|
|
8324
|
-
"application/json": components["schemas"]["
|
|
6901
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8325
6902
|
};
|
|
8326
6903
|
};
|
|
8327
6904
|
/** @description Insufficient permissions */
|
|
@@ -8330,7 +6907,7 @@ export interface operations {
|
|
|
8330
6907
|
[name: string]: unknown;
|
|
8331
6908
|
};
|
|
8332
6909
|
content: {
|
|
8333
|
-
"application/json": components["schemas"]["
|
|
6910
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8334
6911
|
};
|
|
8335
6912
|
};
|
|
8336
6913
|
/** @description Internal server error */
|
|
@@ -8339,7 +6916,7 @@ export interface operations {
|
|
|
8339
6916
|
[name: string]: unknown;
|
|
8340
6917
|
};
|
|
8341
6918
|
content: {
|
|
8342
|
-
"application/json": components["schemas"]["
|
|
6919
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8343
6920
|
};
|
|
8344
6921
|
};
|
|
8345
6922
|
};
|
|
@@ -8373,7 +6950,7 @@ export interface operations {
|
|
|
8373
6950
|
[name: string]: unknown;
|
|
8374
6951
|
};
|
|
8375
6952
|
content: {
|
|
8376
|
-
"application/json": components["schemas"]["
|
|
6953
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8377
6954
|
};
|
|
8378
6955
|
};
|
|
8379
6956
|
/** @description Not authenticated */
|
|
@@ -8382,7 +6959,7 @@ export interface operations {
|
|
|
8382
6959
|
[name: string]: unknown;
|
|
8383
6960
|
};
|
|
8384
6961
|
content: {
|
|
8385
|
-
"application/json": components["schemas"]["
|
|
6962
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8386
6963
|
};
|
|
8387
6964
|
};
|
|
8388
6965
|
/** @description Insufficient permissions */
|
|
@@ -8391,7 +6968,7 @@ export interface operations {
|
|
|
8391
6968
|
[name: string]: unknown;
|
|
8392
6969
|
};
|
|
8393
6970
|
content: {
|
|
8394
|
-
"application/json": components["schemas"]["
|
|
6971
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8395
6972
|
};
|
|
8396
6973
|
};
|
|
8397
6974
|
/** @description Internal server error */
|
|
@@ -8400,7 +6977,7 @@ export interface operations {
|
|
|
8400
6977
|
[name: string]: unknown;
|
|
8401
6978
|
};
|
|
8402
6979
|
content: {
|
|
8403
|
-
"application/json": components["schemas"]["
|
|
6980
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8404
6981
|
};
|
|
8405
6982
|
};
|
|
8406
6983
|
};
|
|
@@ -8430,7 +7007,7 @@ export interface operations {
|
|
|
8430
7007
|
[name: string]: unknown;
|
|
8431
7008
|
};
|
|
8432
7009
|
content: {
|
|
8433
|
-
"application/json": components["schemas"]["
|
|
7010
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8434
7011
|
};
|
|
8435
7012
|
};
|
|
8436
7013
|
/** @description Not authenticated */
|
|
@@ -8439,7 +7016,7 @@ export interface operations {
|
|
|
8439
7016
|
[name: string]: unknown;
|
|
8440
7017
|
};
|
|
8441
7018
|
content: {
|
|
8442
|
-
"application/json": components["schemas"]["
|
|
7019
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8443
7020
|
};
|
|
8444
7021
|
};
|
|
8445
7022
|
/** @description Insufficient permissions */
|
|
@@ -8448,7 +7025,7 @@ export interface operations {
|
|
|
8448
7025
|
[name: string]: unknown;
|
|
8449
7026
|
};
|
|
8450
7027
|
content: {
|
|
8451
|
-
"application/json": components["schemas"]["
|
|
7028
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8452
7029
|
};
|
|
8453
7030
|
};
|
|
8454
7031
|
/** @description Internal server error */
|
|
@@ -8457,7 +7034,7 @@ export interface operations {
|
|
|
8457
7034
|
[name: string]: unknown;
|
|
8458
7035
|
};
|
|
8459
7036
|
content: {
|
|
8460
|
-
"application/json": components["schemas"]["
|
|
7037
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8461
7038
|
};
|
|
8462
7039
|
};
|
|
8463
7040
|
};
|
|
@@ -8520,7 +7097,7 @@ export interface operations {
|
|
|
8520
7097
|
[name: string]: unknown;
|
|
8521
7098
|
};
|
|
8522
7099
|
content: {
|
|
8523
|
-
"application/json": components["schemas"]["
|
|
7100
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8524
7101
|
};
|
|
8525
7102
|
};
|
|
8526
7103
|
/** @description Not authenticated */
|
|
@@ -8529,7 +7106,7 @@ export interface operations {
|
|
|
8529
7106
|
[name: string]: unknown;
|
|
8530
7107
|
};
|
|
8531
7108
|
content: {
|
|
8532
|
-
"application/json": components["schemas"]["
|
|
7109
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8533
7110
|
};
|
|
8534
7111
|
};
|
|
8535
7112
|
/** @description Insufficient permissions */
|
|
@@ -8538,7 +7115,7 @@ export interface operations {
|
|
|
8538
7115
|
[name: string]: unknown;
|
|
8539
7116
|
};
|
|
8540
7117
|
content: {
|
|
8541
|
-
"application/json": components["schemas"]["
|
|
7118
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8542
7119
|
};
|
|
8543
7120
|
};
|
|
8544
7121
|
/** @description Internal server error */
|
|
@@ -8547,7 +7124,7 @@ export interface operations {
|
|
|
8547
7124
|
[name: string]: unknown;
|
|
8548
7125
|
};
|
|
8549
7126
|
content: {
|
|
8550
|
-
"application/json": components["schemas"]["
|
|
7127
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8551
7128
|
};
|
|
8552
7129
|
};
|
|
8553
7130
|
};
|
|
@@ -8590,7 +7167,7 @@ export interface operations {
|
|
|
8590
7167
|
[name: string]: unknown;
|
|
8591
7168
|
};
|
|
8592
7169
|
content: {
|
|
8593
|
-
"application/json": components["schemas"]["
|
|
7170
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8594
7171
|
};
|
|
8595
7172
|
};
|
|
8596
7173
|
/** @description Not authenticated */
|
|
@@ -8599,7 +7176,7 @@ export interface operations {
|
|
|
8599
7176
|
[name: string]: unknown;
|
|
8600
7177
|
};
|
|
8601
7178
|
content: {
|
|
8602
|
-
"application/json": components["schemas"]["
|
|
7179
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8603
7180
|
};
|
|
8604
7181
|
};
|
|
8605
7182
|
/** @description Insufficient permissions */
|
|
@@ -8608,7 +7185,7 @@ export interface operations {
|
|
|
8608
7185
|
[name: string]: unknown;
|
|
8609
7186
|
};
|
|
8610
7187
|
content: {
|
|
8611
|
-
"application/json": components["schemas"]["
|
|
7188
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8612
7189
|
};
|
|
8613
7190
|
};
|
|
8614
7191
|
/** @description Internal server error */
|
|
@@ -8617,7 +7194,7 @@ export interface operations {
|
|
|
8617
7194
|
[name: string]: unknown;
|
|
8618
7195
|
};
|
|
8619
7196
|
content: {
|
|
8620
|
-
"application/json": components["schemas"]["
|
|
7197
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8621
7198
|
};
|
|
8622
7199
|
};
|
|
8623
7200
|
};
|
|
@@ -8670,7 +7247,7 @@ export interface operations {
|
|
|
8670
7247
|
[name: string]: unknown;
|
|
8671
7248
|
};
|
|
8672
7249
|
content: {
|
|
8673
|
-
"application/json": components["schemas"]["
|
|
7250
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8674
7251
|
};
|
|
8675
7252
|
};
|
|
8676
7253
|
/** @description Not authenticated */
|
|
@@ -8679,7 +7256,7 @@ export interface operations {
|
|
|
8679
7256
|
[name: string]: unknown;
|
|
8680
7257
|
};
|
|
8681
7258
|
content: {
|
|
8682
|
-
"application/json": components["schemas"]["
|
|
7259
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8683
7260
|
};
|
|
8684
7261
|
};
|
|
8685
7262
|
/** @description Insufficient permissions */
|
|
@@ -8688,7 +7265,7 @@ export interface operations {
|
|
|
8688
7265
|
[name: string]: unknown;
|
|
8689
7266
|
};
|
|
8690
7267
|
content: {
|
|
8691
|
-
"application/json": components["schemas"]["
|
|
7268
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8692
7269
|
};
|
|
8693
7270
|
};
|
|
8694
7271
|
/** @description Token not found */
|
|
@@ -8704,7 +7281,7 @@ export interface operations {
|
|
|
8704
7281
|
* "type": "not_found_error"
|
|
8705
7282
|
* }
|
|
8706
7283
|
* } */
|
|
8707
|
-
"application/json": components["schemas"]["
|
|
7284
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8708
7285
|
};
|
|
8709
7286
|
};
|
|
8710
7287
|
/** @description Internal server error */
|
|
@@ -8713,7 +7290,7 @@ export interface operations {
|
|
|
8713
7290
|
[name: string]: unknown;
|
|
8714
7291
|
};
|
|
8715
7292
|
content: {
|
|
8716
|
-
"application/json": components["schemas"]["
|
|
7293
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8717
7294
|
};
|
|
8718
7295
|
};
|
|
8719
7296
|
};
|
|
@@ -8742,7 +7319,7 @@ export interface operations {
|
|
|
8742
7319
|
[name: string]: unknown;
|
|
8743
7320
|
};
|
|
8744
7321
|
content: {
|
|
8745
|
-
"application/json": components["schemas"]["
|
|
7322
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8746
7323
|
};
|
|
8747
7324
|
};
|
|
8748
7325
|
/** @description Not authenticated */
|
|
@@ -8751,7 +7328,7 @@ export interface operations {
|
|
|
8751
7328
|
[name: string]: unknown;
|
|
8752
7329
|
};
|
|
8753
7330
|
content: {
|
|
8754
|
-
"application/json": components["schemas"]["
|
|
7331
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8755
7332
|
};
|
|
8756
7333
|
};
|
|
8757
7334
|
/** @description Insufficient permissions */
|
|
@@ -8760,7 +7337,7 @@ export interface operations {
|
|
|
8760
7337
|
[name: string]: unknown;
|
|
8761
7338
|
};
|
|
8762
7339
|
content: {
|
|
8763
|
-
"application/json": components["schemas"]["
|
|
7340
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8764
7341
|
};
|
|
8765
7342
|
};
|
|
8766
7343
|
/** @description Internal server error */
|
|
@@ -8769,7 +7346,7 @@ export interface operations {
|
|
|
8769
7346
|
[name: string]: unknown;
|
|
8770
7347
|
};
|
|
8771
7348
|
content: {
|
|
8772
|
-
"application/json": components["schemas"]["
|
|
7349
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8773
7350
|
};
|
|
8774
7351
|
};
|
|
8775
7352
|
};
|
|
@@ -8796,7 +7373,7 @@ export interface operations {
|
|
|
8796
7373
|
[name: string]: unknown;
|
|
8797
7374
|
};
|
|
8798
7375
|
content: {
|
|
8799
|
-
"application/json": components["schemas"]["
|
|
7376
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8800
7377
|
};
|
|
8801
7378
|
};
|
|
8802
7379
|
/** @description Not authenticated */
|
|
@@ -8805,7 +7382,7 @@ export interface operations {
|
|
|
8805
7382
|
[name: string]: unknown;
|
|
8806
7383
|
};
|
|
8807
7384
|
content: {
|
|
8808
|
-
"application/json": components["schemas"]["
|
|
7385
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8809
7386
|
};
|
|
8810
7387
|
};
|
|
8811
7388
|
/** @description Insufficient permissions */
|
|
@@ -8814,7 +7391,7 @@ export interface operations {
|
|
|
8814
7391
|
[name: string]: unknown;
|
|
8815
7392
|
};
|
|
8816
7393
|
content: {
|
|
8817
|
-
"application/json": components["schemas"]["
|
|
7394
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8818
7395
|
};
|
|
8819
7396
|
};
|
|
8820
7397
|
/** @description Pending request already exists */
|
|
@@ -8823,7 +7400,7 @@ export interface operations {
|
|
|
8823
7400
|
[name: string]: unknown;
|
|
8824
7401
|
};
|
|
8825
7402
|
content: {
|
|
8826
|
-
"application/json": components["schemas"]["
|
|
7403
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8827
7404
|
};
|
|
8828
7405
|
};
|
|
8829
7406
|
/** @description User already has role */
|
|
@@ -8832,7 +7409,7 @@ export interface operations {
|
|
|
8832
7409
|
[name: string]: unknown;
|
|
8833
7410
|
};
|
|
8834
7411
|
content: {
|
|
8835
|
-
"application/json": components["schemas"]["
|
|
7412
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8836
7413
|
};
|
|
8837
7414
|
};
|
|
8838
7415
|
/** @description Internal server error */
|
|
@@ -8841,7 +7418,7 @@ export interface operations {
|
|
|
8841
7418
|
[name: string]: unknown;
|
|
8842
7419
|
};
|
|
8843
7420
|
content: {
|
|
8844
|
-
"application/json": components["schemas"]["
|
|
7421
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8845
7422
|
};
|
|
8846
7423
|
};
|
|
8847
7424
|
};
|
|
@@ -8870,7 +7447,7 @@ export interface operations {
|
|
|
8870
7447
|
[name: string]: unknown;
|
|
8871
7448
|
};
|
|
8872
7449
|
content: {
|
|
8873
|
-
"application/json": components["schemas"]["
|
|
7450
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8874
7451
|
};
|
|
8875
7452
|
};
|
|
8876
7453
|
/** @description Not authenticated */
|
|
@@ -8879,7 +7456,7 @@ export interface operations {
|
|
|
8879
7456
|
[name: string]: unknown;
|
|
8880
7457
|
};
|
|
8881
7458
|
content: {
|
|
8882
|
-
"application/json": components["schemas"]["
|
|
7459
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8883
7460
|
};
|
|
8884
7461
|
};
|
|
8885
7462
|
/** @description Insufficient permissions */
|
|
@@ -8888,7 +7465,7 @@ export interface operations {
|
|
|
8888
7465
|
[name: string]: unknown;
|
|
8889
7466
|
};
|
|
8890
7467
|
content: {
|
|
8891
|
-
"application/json": components["schemas"]["
|
|
7468
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8892
7469
|
};
|
|
8893
7470
|
};
|
|
8894
7471
|
/** @description Request not found */
|
|
@@ -8897,7 +7474,7 @@ export interface operations {
|
|
|
8897
7474
|
[name: string]: unknown;
|
|
8898
7475
|
};
|
|
8899
7476
|
content: {
|
|
8900
|
-
"application/json": components["schemas"]["
|
|
7477
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8901
7478
|
};
|
|
8902
7479
|
};
|
|
8903
7480
|
/** @description Internal server error */
|
|
@@ -8906,7 +7483,7 @@ export interface operations {
|
|
|
8906
7483
|
[name: string]: unknown;
|
|
8907
7484
|
};
|
|
8908
7485
|
content: {
|
|
8909
|
-
"application/json": components["schemas"]["
|
|
7486
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8910
7487
|
};
|
|
8911
7488
|
};
|
|
8912
7489
|
};
|
|
@@ -8946,7 +7523,7 @@ export interface operations {
|
|
|
8946
7523
|
[name: string]: unknown;
|
|
8947
7524
|
};
|
|
8948
7525
|
content: {
|
|
8949
|
-
"application/json": components["schemas"]["
|
|
7526
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8950
7527
|
};
|
|
8951
7528
|
};
|
|
8952
7529
|
/** @description Not authenticated */
|
|
@@ -8955,7 +7532,7 @@ export interface operations {
|
|
|
8955
7532
|
[name: string]: unknown;
|
|
8956
7533
|
};
|
|
8957
7534
|
content: {
|
|
8958
|
-
"application/json": components["schemas"]["
|
|
7535
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8959
7536
|
};
|
|
8960
7537
|
};
|
|
8961
7538
|
/** @description Insufficient permissions */
|
|
@@ -8964,7 +7541,7 @@ export interface operations {
|
|
|
8964
7541
|
[name: string]: unknown;
|
|
8965
7542
|
};
|
|
8966
7543
|
content: {
|
|
8967
|
-
"application/json": components["schemas"]["
|
|
7544
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8968
7545
|
};
|
|
8969
7546
|
};
|
|
8970
7547
|
/** @description Internal server error */
|
|
@@ -8973,7 +7550,7 @@ export interface operations {
|
|
|
8973
7550
|
[name: string]: unknown;
|
|
8974
7551
|
};
|
|
8975
7552
|
content: {
|
|
8976
|
-
"application/json": components["schemas"]["
|
|
7553
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
8977
7554
|
};
|
|
8978
7555
|
};
|
|
8979
7556
|
};
|
|
@@ -9003,7 +7580,7 @@ export interface operations {
|
|
|
9003
7580
|
[name: string]: unknown;
|
|
9004
7581
|
};
|
|
9005
7582
|
content: {
|
|
9006
|
-
"application/json": components["schemas"]["
|
|
7583
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
9007
7584
|
};
|
|
9008
7585
|
};
|
|
9009
7586
|
/** @description Not authenticated */
|
|
@@ -9012,7 +7589,7 @@ export interface operations {
|
|
|
9012
7589
|
[name: string]: unknown;
|
|
9013
7590
|
};
|
|
9014
7591
|
content: {
|
|
9015
|
-
"application/json": components["schemas"]["
|
|
7592
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
9016
7593
|
};
|
|
9017
7594
|
};
|
|
9018
7595
|
/** @description Insufficient permissions */
|
|
@@ -9021,7 +7598,7 @@ export interface operations {
|
|
|
9021
7598
|
[name: string]: unknown;
|
|
9022
7599
|
};
|
|
9023
7600
|
content: {
|
|
9024
|
-
"application/json": components["schemas"]["
|
|
7601
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
9025
7602
|
};
|
|
9026
7603
|
};
|
|
9027
7604
|
/** @description User not found */
|
|
@@ -9030,7 +7607,7 @@ export interface operations {
|
|
|
9030
7607
|
[name: string]: unknown;
|
|
9031
7608
|
};
|
|
9032
7609
|
content: {
|
|
9033
|
-
"application/json": components["schemas"]["
|
|
7610
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
9034
7611
|
};
|
|
9035
7612
|
};
|
|
9036
7613
|
/** @description Internal server error */
|
|
@@ -9039,7 +7616,7 @@ export interface operations {
|
|
|
9039
7616
|
[name: string]: unknown;
|
|
9040
7617
|
};
|
|
9041
7618
|
content: {
|
|
9042
|
-
"application/json": components["schemas"]["
|
|
7619
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
9043
7620
|
};
|
|
9044
7621
|
};
|
|
9045
7622
|
};
|
|
@@ -9073,7 +7650,7 @@ export interface operations {
|
|
|
9073
7650
|
[name: string]: unknown;
|
|
9074
7651
|
};
|
|
9075
7652
|
content: {
|
|
9076
|
-
"application/json": components["schemas"]["
|
|
7653
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
9077
7654
|
};
|
|
9078
7655
|
};
|
|
9079
7656
|
/** @description Not authenticated */
|
|
@@ -9082,7 +7659,7 @@ export interface operations {
|
|
|
9082
7659
|
[name: string]: unknown;
|
|
9083
7660
|
};
|
|
9084
7661
|
content: {
|
|
9085
|
-
"application/json": components["schemas"]["
|
|
7662
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
9086
7663
|
};
|
|
9087
7664
|
};
|
|
9088
7665
|
/** @description Insufficient permissions */
|
|
@@ -9091,7 +7668,7 @@ export interface operations {
|
|
|
9091
7668
|
[name: string]: unknown;
|
|
9092
7669
|
};
|
|
9093
7670
|
content: {
|
|
9094
|
-
"application/json": components["schemas"]["
|
|
7671
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
9095
7672
|
};
|
|
9096
7673
|
};
|
|
9097
7674
|
/** @description User not found */
|
|
@@ -9100,7 +7677,7 @@ export interface operations {
|
|
|
9100
7677
|
[name: string]: unknown;
|
|
9101
7678
|
};
|
|
9102
7679
|
content: {
|
|
9103
|
-
"application/json": components["schemas"]["
|
|
7680
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
9104
7681
|
};
|
|
9105
7682
|
};
|
|
9106
7683
|
/** @description Internal server error */
|
|
@@ -9109,7 +7686,7 @@ export interface operations {
|
|
|
9109
7686
|
[name: string]: unknown;
|
|
9110
7687
|
};
|
|
9111
7688
|
content: {
|
|
9112
|
-
"application/json": components["schemas"]["
|
|
7689
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
9113
7690
|
};
|
|
9114
7691
|
};
|
|
9115
7692
|
};
|
|
@@ -9141,7 +7718,7 @@ export interface operations {
|
|
|
9141
7718
|
[name: string]: unknown;
|
|
9142
7719
|
};
|
|
9143
7720
|
content: {
|
|
9144
|
-
"application/json": components["schemas"]["
|
|
7721
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
9145
7722
|
};
|
|
9146
7723
|
};
|
|
9147
7724
|
/** @description Internal server error */
|
|
@@ -9150,7 +7727,7 @@ export interface operations {
|
|
|
9150
7727
|
[name: string]: unknown;
|
|
9151
7728
|
};
|
|
9152
7729
|
content: {
|
|
9153
|
-
"application/json": components["schemas"]["
|
|
7730
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
9154
7731
|
};
|
|
9155
7732
|
};
|
|
9156
7733
|
};
|
|
@@ -9182,370 +7759,7 @@ export interface operations {
|
|
|
9182
7759
|
[name: string]: unknown;
|
|
9183
7760
|
};
|
|
9184
7761
|
content: {
|
|
9185
|
-
"application/json": components["schemas"]["
|
|
9186
|
-
};
|
|
9187
|
-
};
|
|
9188
|
-
/** @description Internal server error */
|
|
9189
|
-
500: {
|
|
9190
|
-
headers: {
|
|
9191
|
-
[name: string]: unknown;
|
|
9192
|
-
};
|
|
9193
|
-
content: {
|
|
9194
|
-
"application/json": components["schemas"]["OpenAIApiError"];
|
|
9195
|
-
};
|
|
9196
|
-
};
|
|
9197
|
-
};
|
|
9198
|
-
};
|
|
9199
|
-
createChatCompletion: {
|
|
9200
|
-
parameters: {
|
|
9201
|
-
query?: never;
|
|
9202
|
-
header?: never;
|
|
9203
|
-
path?: never;
|
|
9204
|
-
cookie?: never;
|
|
9205
|
-
};
|
|
9206
|
-
requestBody: {
|
|
9207
|
-
content: {
|
|
9208
|
-
/** @example {
|
|
9209
|
-
* "max_tokens": 100,
|
|
9210
|
-
* "messages": [
|
|
9211
|
-
* {
|
|
9212
|
-
* "content": "You are a helpful assistant.",
|
|
9213
|
-
* "role": "system"
|
|
9214
|
-
* },
|
|
9215
|
-
* {
|
|
9216
|
-
* "content": "Hello!",
|
|
9217
|
-
* "role": "user"
|
|
9218
|
-
* }
|
|
9219
|
-
* ],
|
|
9220
|
-
* "model": "llama2:chat",
|
|
9221
|
-
* "stream": false,
|
|
9222
|
-
* "temperature": 0.7
|
|
9223
|
-
* } */
|
|
9224
|
-
"application/json": components["schemas"]["CreateChatCompletionRequest"];
|
|
9225
|
-
};
|
|
9226
|
-
};
|
|
9227
|
-
responses: {
|
|
9228
|
-
/** @description Chat completion response */
|
|
9229
|
-
200: {
|
|
9230
|
-
headers: {
|
|
9231
|
-
[name: string]: unknown;
|
|
9232
|
-
};
|
|
9233
|
-
content: {
|
|
9234
|
-
/** @example {
|
|
9235
|
-
* "choices": [
|
|
9236
|
-
* {
|
|
9237
|
-
* "finish_reason": "stop",
|
|
9238
|
-
* "index": 0,
|
|
9239
|
-
* "message": {
|
|
9240
|
-
* "content": "Hello! How can I help you today?",
|
|
9241
|
-
* "role": "assistant"
|
|
9242
|
-
* }
|
|
9243
|
-
* }
|
|
9244
|
-
* ],
|
|
9245
|
-
* "created": 1677610602,
|
|
9246
|
-
* "id": "chatcmpl-123",
|
|
9247
|
-
* "model": "llama2:chat",
|
|
9248
|
-
* "object": "chat.completion",
|
|
9249
|
-
* "usage": {
|
|
9250
|
-
* "completion_tokens": 10,
|
|
9251
|
-
* "prompt_tokens": 20,
|
|
9252
|
-
* "total_tokens": 30
|
|
9253
|
-
* }
|
|
9254
|
-
* } */
|
|
9255
|
-
"application/json": components["schemas"]["CreateChatCompletionResponse"];
|
|
9256
|
-
};
|
|
9257
|
-
};
|
|
9258
|
-
/** @description Chat completion stream, the status is 200, using 201 to avoid OpenAPI format limitation. */
|
|
9259
|
-
201: {
|
|
9260
|
-
headers: {
|
|
9261
|
-
/** @description No-cache directive */
|
|
9262
|
-
"Cache-Control"?: string;
|
|
9263
|
-
[name: string]: unknown;
|
|
9264
|
-
};
|
|
9265
|
-
content: {
|
|
9266
|
-
/** @example {
|
|
9267
|
-
* "choices": [
|
|
9268
|
-
* {
|
|
9269
|
-
* "delta": {
|
|
9270
|
-
* "content": "Hello"
|
|
9271
|
-
* },
|
|
9272
|
-
* "finish_reason": null,
|
|
9273
|
-
* "index": 0
|
|
9274
|
-
* }
|
|
9275
|
-
* ],
|
|
9276
|
-
* "created": 1694268190,
|
|
9277
|
-
* "id": "chatcmpl-123",
|
|
9278
|
-
* "model": "llama2:chat",
|
|
9279
|
-
* "object": "chat.completion.chunk"
|
|
9280
|
-
* } */
|
|
9281
|
-
"text/event-stream": components["schemas"]["CreateChatCompletionStreamResponse"];
|
|
9282
|
-
};
|
|
9283
|
-
};
|
|
9284
|
-
/** @description Invalid request parameters */
|
|
9285
|
-
400: {
|
|
9286
|
-
headers: {
|
|
9287
|
-
[name: string]: unknown;
|
|
9288
|
-
};
|
|
9289
|
-
content: {
|
|
9290
|
-
"application/json": components["schemas"]["OpenAIApiError"];
|
|
9291
|
-
};
|
|
9292
|
-
};
|
|
9293
|
-
/** @description Not authenticated */
|
|
9294
|
-
401: {
|
|
9295
|
-
headers: {
|
|
9296
|
-
[name: string]: unknown;
|
|
9297
|
-
};
|
|
9298
|
-
content: {
|
|
9299
|
-
"application/json": components["schemas"]["OpenAIApiError"];
|
|
9300
|
-
};
|
|
9301
|
-
};
|
|
9302
|
-
/** @description Insufficient permissions */
|
|
9303
|
-
403: {
|
|
9304
|
-
headers: {
|
|
9305
|
-
[name: string]: unknown;
|
|
9306
|
-
};
|
|
9307
|
-
content: {
|
|
9308
|
-
"application/json": components["schemas"]["OpenAIApiError"];
|
|
9309
|
-
};
|
|
9310
|
-
};
|
|
9311
|
-
/** @description Internal server error */
|
|
9312
|
-
500: {
|
|
9313
|
-
headers: {
|
|
9314
|
-
[name: string]: unknown;
|
|
9315
|
-
};
|
|
9316
|
-
content: {
|
|
9317
|
-
"application/json": components["schemas"]["OpenAIApiError"];
|
|
9318
|
-
};
|
|
9319
|
-
};
|
|
9320
|
-
};
|
|
9321
|
-
};
|
|
9322
|
-
createEmbedding: {
|
|
9323
|
-
parameters: {
|
|
9324
|
-
query?: never;
|
|
9325
|
-
header?: never;
|
|
9326
|
-
path?: never;
|
|
9327
|
-
cookie?: never;
|
|
9328
|
-
};
|
|
9329
|
-
requestBody: {
|
|
9330
|
-
content: {
|
|
9331
|
-
/** @example {
|
|
9332
|
-
* "input": "The quick brown fox jumps over the lazy dog",
|
|
9333
|
-
* "model": "text-embedding-model"
|
|
9334
|
-
* } */
|
|
9335
|
-
"application/json": components["schemas"]["CreateEmbeddingRequest"];
|
|
9336
|
-
};
|
|
9337
|
-
};
|
|
9338
|
-
responses: {
|
|
9339
|
-
/** @description Embedding response */
|
|
9340
|
-
200: {
|
|
9341
|
-
headers: {
|
|
9342
|
-
[name: string]: unknown;
|
|
9343
|
-
};
|
|
9344
|
-
content: {
|
|
9345
|
-
/** @example {
|
|
9346
|
-
* "data": [
|
|
9347
|
-
* {
|
|
9348
|
-
* "embedding": [
|
|
9349
|
-
* 0.1,
|
|
9350
|
-
* 0.2,
|
|
9351
|
-
* 0.3
|
|
9352
|
-
* ],
|
|
9353
|
-
* "index": 0,
|
|
9354
|
-
* "object": "embedding"
|
|
9355
|
-
* }
|
|
9356
|
-
* ],
|
|
9357
|
-
* "model": "text-embedding-model",
|
|
9358
|
-
* "object": "list",
|
|
9359
|
-
* "usage": {
|
|
9360
|
-
* "prompt_tokens": 8,
|
|
9361
|
-
* "total_tokens": 8
|
|
9362
|
-
* }
|
|
9363
|
-
* } */
|
|
9364
|
-
"application/json": components["schemas"]["CreateEmbeddingResponse"];
|
|
9365
|
-
};
|
|
9366
|
-
};
|
|
9367
|
-
/** @description Invalid request parameters */
|
|
9368
|
-
400: {
|
|
9369
|
-
headers: {
|
|
9370
|
-
[name: string]: unknown;
|
|
9371
|
-
};
|
|
9372
|
-
content: {
|
|
9373
|
-
"application/json": components["schemas"]["OpenAIApiError"];
|
|
9374
|
-
};
|
|
9375
|
-
};
|
|
9376
|
-
/** @description Not authenticated */
|
|
9377
|
-
401: {
|
|
9378
|
-
headers: {
|
|
9379
|
-
[name: string]: unknown;
|
|
9380
|
-
};
|
|
9381
|
-
content: {
|
|
9382
|
-
"application/json": components["schemas"]["OpenAIApiError"];
|
|
9383
|
-
};
|
|
9384
|
-
};
|
|
9385
|
-
/** @description Insufficient permissions */
|
|
9386
|
-
403: {
|
|
9387
|
-
headers: {
|
|
9388
|
-
[name: string]: unknown;
|
|
9389
|
-
};
|
|
9390
|
-
content: {
|
|
9391
|
-
"application/json": components["schemas"]["OpenAIApiError"];
|
|
9392
|
-
};
|
|
9393
|
-
};
|
|
9394
|
-
/** @description Internal server error */
|
|
9395
|
-
500: {
|
|
9396
|
-
headers: {
|
|
9397
|
-
[name: string]: unknown;
|
|
9398
|
-
};
|
|
9399
|
-
content: {
|
|
9400
|
-
"application/json": components["schemas"]["OpenAIApiError"];
|
|
9401
|
-
};
|
|
9402
|
-
};
|
|
9403
|
-
};
|
|
9404
|
-
};
|
|
9405
|
-
listModels: {
|
|
9406
|
-
parameters: {
|
|
9407
|
-
query?: never;
|
|
9408
|
-
header?: never;
|
|
9409
|
-
path?: never;
|
|
9410
|
-
cookie?: never;
|
|
9411
|
-
};
|
|
9412
|
-
requestBody?: never;
|
|
9413
|
-
responses: {
|
|
9414
|
-
/** @description List of available models */
|
|
9415
|
-
200: {
|
|
9416
|
-
headers: {
|
|
9417
|
-
[name: string]: unknown;
|
|
9418
|
-
};
|
|
9419
|
-
content: {
|
|
9420
|
-
/** @example {
|
|
9421
|
-
* "data": [
|
|
9422
|
-
* {
|
|
9423
|
-
* "created": 1677610602,
|
|
9424
|
-
* "id": "llama2:chat",
|
|
9425
|
-
* "object": "model",
|
|
9426
|
-
* "owned_by": "bodhi"
|
|
9427
|
-
* },
|
|
9428
|
-
* {
|
|
9429
|
-
* "created": 1677610602,
|
|
9430
|
-
* "id": "mistral:instruct",
|
|
9431
|
-
* "object": "model",
|
|
9432
|
-
* "owned_by": "bodhi"
|
|
9433
|
-
* }
|
|
9434
|
-
* ],
|
|
9435
|
-
* "object": "list"
|
|
9436
|
-
* } */
|
|
9437
|
-
"application/json": components["schemas"]["ListModelResponse"];
|
|
9438
|
-
};
|
|
9439
|
-
};
|
|
9440
|
-
/** @description Invalid request parameters */
|
|
9441
|
-
400: {
|
|
9442
|
-
headers: {
|
|
9443
|
-
[name: string]: unknown;
|
|
9444
|
-
};
|
|
9445
|
-
content: {
|
|
9446
|
-
"application/json": components["schemas"]["OpenAIApiError"];
|
|
9447
|
-
};
|
|
9448
|
-
};
|
|
9449
|
-
/** @description Not authenticated */
|
|
9450
|
-
401: {
|
|
9451
|
-
headers: {
|
|
9452
|
-
[name: string]: unknown;
|
|
9453
|
-
};
|
|
9454
|
-
content: {
|
|
9455
|
-
"application/json": components["schemas"]["OpenAIApiError"];
|
|
9456
|
-
};
|
|
9457
|
-
};
|
|
9458
|
-
/** @description Insufficient permissions */
|
|
9459
|
-
403: {
|
|
9460
|
-
headers: {
|
|
9461
|
-
[name: string]: unknown;
|
|
9462
|
-
};
|
|
9463
|
-
content: {
|
|
9464
|
-
"application/json": components["schemas"]["OpenAIApiError"];
|
|
9465
|
-
};
|
|
9466
|
-
};
|
|
9467
|
-
/** @description Internal server error */
|
|
9468
|
-
500: {
|
|
9469
|
-
headers: {
|
|
9470
|
-
[name: string]: unknown;
|
|
9471
|
-
};
|
|
9472
|
-
content: {
|
|
9473
|
-
"application/json": components["schemas"]["OpenAIApiError"];
|
|
9474
|
-
};
|
|
9475
|
-
};
|
|
9476
|
-
};
|
|
9477
|
-
};
|
|
9478
|
-
getModel: {
|
|
9479
|
-
parameters: {
|
|
9480
|
-
query?: never;
|
|
9481
|
-
header?: never;
|
|
9482
|
-
path: {
|
|
9483
|
-
/**
|
|
9484
|
-
* @description Model identifier - can be user alias (e.g., 'llama2:chat'), model alias, or API provider alias
|
|
9485
|
-
* @example llama2:chat
|
|
9486
|
-
*/
|
|
9487
|
-
id: string;
|
|
9488
|
-
};
|
|
9489
|
-
cookie?: never;
|
|
9490
|
-
};
|
|
9491
|
-
requestBody?: never;
|
|
9492
|
-
responses: {
|
|
9493
|
-
/** @description Model details */
|
|
9494
|
-
200: {
|
|
9495
|
-
headers: {
|
|
9496
|
-
[name: string]: unknown;
|
|
9497
|
-
};
|
|
9498
|
-
content: {
|
|
9499
|
-
/** @example {
|
|
9500
|
-
* "created": 1677610602,
|
|
9501
|
-
* "id": "llama2:chat",
|
|
9502
|
-
* "object": "model",
|
|
9503
|
-
* "owned_by": "system"
|
|
9504
|
-
* } */
|
|
9505
|
-
"application/json": components["schemas"]["Model"];
|
|
9506
|
-
};
|
|
9507
|
-
};
|
|
9508
|
-
/** @description Invalid request parameters */
|
|
9509
|
-
400: {
|
|
9510
|
-
headers: {
|
|
9511
|
-
[name: string]: unknown;
|
|
9512
|
-
};
|
|
9513
|
-
content: {
|
|
9514
|
-
"application/json": components["schemas"]["OpenAIApiError"];
|
|
9515
|
-
};
|
|
9516
|
-
};
|
|
9517
|
-
/** @description Not authenticated */
|
|
9518
|
-
401: {
|
|
9519
|
-
headers: {
|
|
9520
|
-
[name: string]: unknown;
|
|
9521
|
-
};
|
|
9522
|
-
content: {
|
|
9523
|
-
"application/json": components["schemas"]["OpenAIApiError"];
|
|
9524
|
-
};
|
|
9525
|
-
};
|
|
9526
|
-
/** @description Insufficient permissions */
|
|
9527
|
-
403: {
|
|
9528
|
-
headers: {
|
|
9529
|
-
[name: string]: unknown;
|
|
9530
|
-
};
|
|
9531
|
-
content: {
|
|
9532
|
-
"application/json": components["schemas"]["OpenAIApiError"];
|
|
9533
|
-
};
|
|
9534
|
-
};
|
|
9535
|
-
/** @description Model not found */
|
|
9536
|
-
404: {
|
|
9537
|
-
headers: {
|
|
9538
|
-
[name: string]: unknown;
|
|
9539
|
-
};
|
|
9540
|
-
content: {
|
|
9541
|
-
/** @example {
|
|
9542
|
-
* "error": {
|
|
9543
|
-
* "code": "model_not_found",
|
|
9544
|
-
* "message": "Model 'unknown:model' not found",
|
|
9545
|
-
* "type": "not_found_error"
|
|
9546
|
-
* }
|
|
9547
|
-
* } */
|
|
9548
|
-
"application/json": components["schemas"]["OpenAIApiError"];
|
|
7762
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
9549
7763
|
};
|
|
9550
7764
|
};
|
|
9551
7765
|
/** @description Internal server error */
|
|
@@ -9554,7 +7768,7 @@ export interface operations {
|
|
|
9554
7768
|
[name: string]: unknown;
|
|
9555
7769
|
};
|
|
9556
7770
|
content: {
|
|
9557
|
-
"application/json": components["schemas"]["
|
|
7771
|
+
"application/json": components["schemas"]["BodhiApiError"];
|
|
9558
7772
|
};
|
|
9559
7773
|
};
|
|
9560
7774
|
};
|