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