@stack-spot/portal-network 0.113.5 → 0.113.7

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/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.113.7](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.113.6...portal-network@v0.113.7) (2025-04-07)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * add inferenceDictionary ([#899](https://github.com/stack-spot/portal-commons/issues/899)) ([c360770](https://github.com/stack-spot/portal-commons/commit/c3607705c89be89579dd9a08ba638517b6d1a3ef))
9
+
10
+ ## [0.113.6](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.113.5...portal-network@v0.113.6) (2025-04-05)
11
+
12
+
13
+ ### Features
14
+
15
+ * add ai inference api ([#897](https://github.com/stack-spot/portal-commons/issues/897)) ([d8daeb5](https://github.com/stack-spot/portal-commons/commit/d8daeb54fd0fab77a2fe4e3c2c94a2be7b97f28d))
16
+
3
17
  ## [0.113.5](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.113.4...portal-network@v0.113.5) (2025-04-04)
4
18
 
5
19
 
@@ -0,0 +1,306 @@
1
+ /**
2
+ * FastAPI
3
+ * 0.1.0
4
+ * DO NOT MODIFY - This file has been generated using oazapfts.
5
+ * See https://www.npmjs.com/package/oazapfts
6
+ */
7
+ import * as Oazapfts from "@oazapfts/runtime";
8
+ export declare const defaults: Oazapfts.Defaults<Oazapfts.CustomHeaders>;
9
+ export declare const servers: {};
10
+ export type LlmRoles = "system" | "user" | "assistant" | "function" | "tool";
11
+ export type SendMessage = {
12
+ role: LlmRoles;
13
+ content: string;
14
+ };
15
+ export type SendConversation = {
16
+ model_name: string;
17
+ messages: SendMessage[];
18
+ temperature?: number | null;
19
+ json_schema?: {
20
+ [key: string]: any;
21
+ } | null;
22
+ is_azure?: boolean | null;
23
+ };
24
+ export type MessageRepresentation = {
25
+ /** The role of the sender of the message (e.g., 'user', 'assistant', 'system', 'tool'). */
26
+ role: string;
27
+ /** The content of the message. */
28
+ content: string;
29
+ /** The name of the sender, if applicable. */
30
+ name?: string | null;
31
+ /** A dictionary representing a function call, if applicable. */
32
+ function_call?: {
33
+ [key: string]: any;
34
+ } | null;
35
+ };
36
+ export type ChoiceRepresentation = {
37
+ message: MessageRepresentation;
38
+ finish_reason: string;
39
+ index: number;
40
+ };
41
+ export type UsageRepresentation = {
42
+ prompt_tokens: number;
43
+ completion_tokens: number;
44
+ total_tokens: number;
45
+ };
46
+ export type MetricsRepresentation = {
47
+ latency_ms: number;
48
+ };
49
+ export type ConversationRepresentation = {
50
+ id: string;
51
+ choices: ChoiceRepresentation[];
52
+ created: string;
53
+ model: string;
54
+ "object"?: string;
55
+ usage: UsageRepresentation;
56
+ metrics?: MetricsRepresentation | null;
57
+ };
58
+ export type ValidationError = {
59
+ loc: (string | number)[];
60
+ msg: string;
61
+ "type": string;
62
+ };
63
+ export type HttpValidationError = {
64
+ detail?: ValidationError[];
65
+ };
66
+ export type FunctionCall = {
67
+ /** The name of the function to call */
68
+ name: string;
69
+ /** A JSON string representing the function arguments */
70
+ arguments: string;
71
+ };
72
+ export type Message = {
73
+ /** The role of the message (system, user, assistant, or function) */
74
+ role: LlmRoles;
75
+ /** The content of the message */
76
+ content: string;
77
+ /** The name of the sender (optional) */
78
+ name?: string | null;
79
+ /** Details of a function call (optional) */
80
+ function_call?: FunctionCall | null;
81
+ };
82
+ export type FunctionParameter = {
83
+ /** The type of the parameter */
84
+ "type": string;
85
+ /** A description of the parameter (optional) */
86
+ description?: string | null;
87
+ /** A list of possible values for the parameter (optional) */
88
+ "enum"?: string[] | null;
89
+ /** A dictionary of properties for the parameter (optional) */
90
+ properties?: {
91
+ [key: string]: any;
92
+ } | null;
93
+ /** A list of required parameters (optional) */
94
+ required?: string[] | null;
95
+ /** Allow arbitrary data of specific typed */
96
+ additionalProperties?: boolean;
97
+ };
98
+ export type Function = {
99
+ /** The name of the function */
100
+ name: string;
101
+ /** A description of what the function does */
102
+ description: string;
103
+ /** The parameters required by the function */
104
+ parameters: FunctionParameter;
105
+ /** Strict specific schema response. Only `strict` function tools can be auto-parsed */
106
+ strict: boolean;
107
+ };
108
+ export type ChatCompletion = {
109
+ /** The model to be used for the chat completion */
110
+ model: string;
111
+ /** A list of messages that make up the conversation */
112
+ messages: Message[];
113
+ /** Sampling temperature; higher values make output more random */
114
+ temperature?: number;
115
+ /** Nucleus sampling probability; controls diversity */
116
+ top_p?: number;
117
+ /** Number of completions to generate */
118
+ n?: number;
119
+ /** Whether to stream the response */
120
+ stream?: boolean;
121
+ /** Stop sequences that will halt the generation */
122
+ stop?: string | string[] | null;
123
+ /** Maximum number of tokens to generate */
124
+ max_tokens?: number | null;
125
+ /** Penalty based on new tokens' presence in the text */
126
+ presence_penalty?: number;
127
+ /** Penalty based on new tokens' frequency in the text */
128
+ frequency_penalty?: number;
129
+ /** A dictionary to adjust the likelihood of specific tokens */
130
+ logit_bias?: {
131
+ [key: string]: number;
132
+ } | null;
133
+ /** An identifier for the user */
134
+ user?: string | null;
135
+ /** A list of functions that can be called during the chat */
136
+ functions?: Function[] | null;
137
+ /** Specifies function call behavior or parameters (for example, 'auto' or {'name': 'function_name'}) */
138
+ function_call?: string | {
139
+ [key: string]: string;
140
+ } | null;
141
+ };
142
+ export type StateType = "chat" | "planning" | "step" | "final_answer" | "tool" | "used_tools";
143
+ export type StateAction = "start" | "end";
144
+ export type StepTool = {
145
+ /** Unique ULID identifier for the tool. LLM always sends null. */
146
+ agent_tool_id: string | null;
147
+ /** Unique ULID identifier for the tool. LLM always sends null. */
148
+ tool_id: string | null;
149
+ /** Unique ULID identifier for tool execution in a step. LLM always sends null. */
150
+ tool_execution_id: string | null;
151
+ /** Exact name of the function to execute. Must include a ULID and starting with 'agt_id__' */
152
+ name: string | null;
153
+ /** JSON string of arguments required to execute the tool. */
154
+ arguments: string | null;
155
+ };
156
+ export type Step = {
157
+ /** Unique ULID identifier for the step. LLM sends null by default. */
158
+ id: string | null;
159
+ /** Brief goal of the step. Use the same language provided by the user without repeating the prompt. Example.: Generate image in oil painting style */
160
+ goal: string;
161
+ /** List of tools to execute in parallel in this step. */
162
+ tools: StepTool[] | null;
163
+ };
164
+ export type Plan = {
165
+ /** Brief description of the expected action and the number of necessary steps (max 100 characters). */
166
+ plan_goal?: string | null;
167
+ /** Total number of steps, including the final response step. */
168
+ total_steps?: number | null;
169
+ /** List of steps to be executed, including the final user response step. */
170
+ steps?: Step[] | null;
171
+ };
172
+ export type Score = {
173
+ /** A score between 0.0 and 1.0 indicating how well the response met the user's requirements. */
174
+ score: number;
175
+ };
176
+ export type ToolInput = {
177
+ input?: {
178
+ [key: string]: any;
179
+ } | null;
180
+ attempt: number;
181
+ };
182
+ export type ToolOutput = {
183
+ output?: string | null;
184
+ attempt: number;
185
+ };
186
+ export type ProcessState = {
187
+ "type": StateType;
188
+ action: StateAction;
189
+ id?: string | null;
190
+ duration?: number | null;
191
+ data?: Plan | Score | ToolInput | ToolOutput | null;
192
+ };
193
+ export type LlmProviderResponse = {
194
+ id: string;
195
+ name: string;
196
+ provider_type: string;
197
+ };
198
+ export type LlmModelConfigurationResponse = {
199
+ id: string;
200
+ usage_params: {
201
+ [key: string]: any;
202
+ } | null;
203
+ model_name: string;
204
+ provider: LlmProviderResponse;
205
+ };
206
+ export type LlmModelResourcesResponse = {
207
+ id: string;
208
+ model_id: string;
209
+ resource_name: string;
210
+ is_default: boolean;
211
+ };
212
+ export type LlmModelsResponse = {
213
+ id: string;
214
+ active: boolean;
215
+ display_name: string;
216
+ self_hosted: boolean;
217
+ model_configuration: LlmModelConfigurationResponse;
218
+ resources: LlmModelResourcesResponse[];
219
+ created_at: string;
220
+ updated_at: string;
221
+ updated_by: string;
222
+ };
223
+ export type UpdateLlmModelRequest = {
224
+ active: boolean;
225
+ };
226
+ export type UpdateLlmModelResourceRequest = {
227
+ resource_name: string;
228
+ is_default?: boolean;
229
+ };
230
+ /**
231
+ * Health Check
232
+ */
233
+ export declare function healthCheckHealthzGet(opts?: Oazapfts.RequestOpts): Promise<any>;
234
+ /**
235
+ * Handle conversation requests
236
+ */
237
+ export declare function converseV0ConversationPost({ xAccountId, authorization, sendConversation }: {
238
+ xAccountId?: string | null;
239
+ authorization: string;
240
+ sendConversation: SendConversation;
241
+ }, opts?: Oazapfts.RequestOpts): Promise<ConversationRepresentation>;
242
+ /**
243
+ * Execute an agent with tool orchestration
244
+ */
245
+ export declare function chatCompletionV1AgentAgentIdDetailModeChatCompletionsPost({ agentId, detailMode, chatCompletion }: {
246
+ agentId: string;
247
+ detailMode: boolean;
248
+ chatCompletion: ChatCompletion;
249
+ }, opts?: Oazapfts.RequestOpts): Promise<any>;
250
+ /**
251
+ * Fake For Doc
252
+ */
253
+ export declare function fakeForDocV1FakeForDocOnlyGet(opts?: Oazapfts.RequestOpts): Promise<ProcessState | null>;
254
+ /**
255
+ * List Models
256
+ */
257
+ export declare function listModelsV1LlmModelsGet({ active, resource, $default, xAccountId, authorization }: {
258
+ active?: boolean | null;
259
+ resource?: string | null;
260
+ $default?: boolean | null;
261
+ xAccountId?: string | null;
262
+ authorization: string;
263
+ }, opts?: Oazapfts.RequestOpts): Promise<LlmModelsResponse[]>;
264
+ /**
265
+ * Get Model
266
+ */
267
+ export declare function getModelV1LlmModelsModelIdGet({ modelId, xAccountId, authorization }: {
268
+ modelId: string;
269
+ xAccountId?: string | null;
270
+ authorization: string;
271
+ }, opts?: Oazapfts.RequestOpts): Promise<LlmModelsResponse>;
272
+ /**
273
+ * Update Model
274
+ */
275
+ export declare function updateModelV1LlmModelsModelIdPatch({ modelId, xAccountId, authorization, updateLlmModelRequest }: {
276
+ modelId: string;
277
+ xAccountId?: string | null;
278
+ authorization: string;
279
+ updateLlmModelRequest: UpdateLlmModelRequest;
280
+ }, opts?: Oazapfts.RequestOpts): Promise<LlmModelsResponse>;
281
+ /**
282
+ * Save Or Update Model Resources
283
+ */
284
+ export declare function saveOrUpdateModelResourcesV1LlmModelsModelIdResourcesPut({ modelId, xAccountId, authorization, body }: {
285
+ modelId: string;
286
+ xAccountId?: string | null;
287
+ authorization: string;
288
+ body: UpdateLlmModelResourceRequest[];
289
+ }, opts?: Oazapfts.RequestOpts): Promise<any>;
290
+ /**
291
+ * Delete Model Resources
292
+ */
293
+ export declare function deleteModelResourcesV1LlmResourcesResourceIdDelete({ resourceId, xAccountId, authorization }: {
294
+ resourceId: string;
295
+ xAccountId?: string | null;
296
+ authorization: string;
297
+ }, opts?: Oazapfts.RequestOpts): Promise<any>;
298
+ /**
299
+ * Handle completions requests
300
+ */
301
+ export declare function createCompletionsV1ChatCompletionsPost({ xAccountId, authorization, chatCompletion }: {
302
+ xAccountId?: string | null;
303
+ authorization: string;
304
+ chatCompletion: ChatCompletion;
305
+ }, opts?: Oazapfts.RequestOpts): Promise<any>;
306
+ //# sourceMappingURL=genAiInference.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"genAiInference.d.ts","sourceRoot":"","sources":["../../src/api/genAiInference.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,138 @@
1
+ /**
2
+ * FastAPI
3
+ * 0.1.0
4
+ * DO NOT MODIFY - This file has been generated using oazapfts.
5
+ * See https://www.npmjs.com/package/oazapfts
6
+ */
7
+ import * as Oazapfts from "@oazapfts/runtime";
8
+ import * as QS from "@oazapfts/runtime/query";
9
+ export const defaults = {
10
+ headers: {},
11
+ baseUrl: "/",
12
+ };
13
+ const oazapfts = Oazapfts.runtime(defaults);
14
+ export const servers = {};
15
+ /**
16
+ * Health Check
17
+ */
18
+ export function healthCheckHealthzGet(opts) {
19
+ return oazapfts.ok(oazapfts.fetchJson("/healthz", {
20
+ ...opts
21
+ }));
22
+ }
23
+ /**
24
+ * Handle conversation requests
25
+ */
26
+ export function converseV0ConversationPost({ xAccountId, authorization, sendConversation }, opts) {
27
+ return oazapfts.ok(oazapfts.fetchJson("/v0/conversation", oazapfts.json({
28
+ ...opts,
29
+ method: "POST",
30
+ body: sendConversation,
31
+ headers: oazapfts.mergeHeaders(opts?.headers, {
32
+ "x-account-id": xAccountId,
33
+ authorization
34
+ })
35
+ })));
36
+ }
37
+ /**
38
+ * Execute an agent with tool orchestration
39
+ */
40
+ export function chatCompletionV1AgentAgentIdDetailModeChatCompletionsPost({ agentId, detailMode, chatCompletion }, opts) {
41
+ return oazapfts.ok(oazapfts.fetchJson(`/v1/agent/${encodeURIComponent(agentId)}/${encodeURIComponent(detailMode)}/chat/completions`, oazapfts.json({
42
+ ...opts,
43
+ method: "POST",
44
+ body: chatCompletion
45
+ })));
46
+ }
47
+ /**
48
+ * Fake For Doc
49
+ */
50
+ export function fakeForDocV1FakeForDocOnlyGet(opts) {
51
+ return oazapfts.ok(oazapfts.fetchJson("/v1/fake_for_doc_only", {
52
+ ...opts
53
+ }));
54
+ }
55
+ /**
56
+ * List Models
57
+ */
58
+ export function listModelsV1LlmModelsGet({ active, resource, $default, xAccountId, authorization }, opts) {
59
+ return oazapfts.ok(oazapfts.fetchJson(`/v1/llm/models${QS.query(QS.explode({
60
+ active,
61
+ resource,
62
+ "default": $default
63
+ }))}`, {
64
+ ...opts,
65
+ headers: oazapfts.mergeHeaders(opts?.headers, {
66
+ "x-account-id": xAccountId,
67
+ authorization
68
+ })
69
+ }));
70
+ }
71
+ /**
72
+ * Get Model
73
+ */
74
+ export function getModelV1LlmModelsModelIdGet({ modelId, xAccountId, authorization }, opts) {
75
+ return oazapfts.ok(oazapfts.fetchJson(`/v1/llm/models/${encodeURIComponent(modelId)}`, {
76
+ ...opts,
77
+ headers: oazapfts.mergeHeaders(opts?.headers, {
78
+ "x-account-id": xAccountId,
79
+ authorization
80
+ })
81
+ }));
82
+ }
83
+ /**
84
+ * Update Model
85
+ */
86
+ export function updateModelV1LlmModelsModelIdPatch({ modelId, xAccountId, authorization, updateLlmModelRequest }, opts) {
87
+ return oazapfts.ok(oazapfts.fetchJson(`/v1/llm/models/${encodeURIComponent(modelId)}`, oazapfts.json({
88
+ ...opts,
89
+ method: "PATCH",
90
+ body: updateLlmModelRequest,
91
+ headers: oazapfts.mergeHeaders(opts?.headers, {
92
+ "x-account-id": xAccountId,
93
+ authorization
94
+ })
95
+ })));
96
+ }
97
+ /**
98
+ * Save Or Update Model Resources
99
+ */
100
+ export function saveOrUpdateModelResourcesV1LlmModelsModelIdResourcesPut({ modelId, xAccountId, authorization, body }, opts) {
101
+ return oazapfts.ok(oazapfts.fetchJson(`/v1/llm/models/${encodeURIComponent(modelId)}/resources`, oazapfts.json({
102
+ ...opts,
103
+ method: "PUT",
104
+ body,
105
+ headers: oazapfts.mergeHeaders(opts?.headers, {
106
+ "x-account-id": xAccountId,
107
+ authorization
108
+ })
109
+ })));
110
+ }
111
+ /**
112
+ * Delete Model Resources
113
+ */
114
+ export function deleteModelResourcesV1LlmResourcesResourceIdDelete({ resourceId, xAccountId, authorization }, opts) {
115
+ return oazapfts.ok(oazapfts.fetchJson(`/v1/llm/resources/${encodeURIComponent(resourceId)}`, {
116
+ ...opts,
117
+ method: "DELETE",
118
+ headers: oazapfts.mergeHeaders(opts?.headers, {
119
+ "x-account-id": xAccountId,
120
+ authorization
121
+ })
122
+ }));
123
+ }
124
+ /**
125
+ * Handle completions requests
126
+ */
127
+ export function createCompletionsV1ChatCompletionsPost({ xAccountId, authorization, chatCompletion }, opts) {
128
+ return oazapfts.ok(oazapfts.fetchJson("/v1/chat/completions", oazapfts.json({
129
+ ...opts,
130
+ method: "POST",
131
+ body: chatCompletion,
132
+ headers: oazapfts.mergeHeaders(opts?.headers, {
133
+ "x-account-id": xAccountId,
134
+ authorization
135
+ })
136
+ })));
137
+ }
138
+ //# sourceMappingURL=genAiInference.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"genAiInference.js","sourceRoot":"","sources":["../../src/api/genAiInference.ts"],"names":[],"mappings":"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"}
package/dist/apis.json CHANGED
@@ -197,5 +197,13 @@
197
197
  "prd": "https://code-shift-api.stackspot.com"
198
198
  },
199
199
  "docs": "/openapi.json"
200
+ },
201
+ "genAiInference": {
202
+ "url": {
203
+ "dev": "https://genai-inference-app.dev.stackspot.com",
204
+ "stg": "https://genai-inference-app.stg.stackspot.com",
205
+ "prd": "https://genai-inference-app.stg.stackspot.com"
206
+ },
207
+ "docs": "/openapi.json"
200
208
  }
201
209
  }
@@ -0,0 +1,54 @@
1
+ import { HttpError } from '@oazapfts/runtime';
2
+ import { StackspotAPIError } from '../error/StackspotAPIError.js';
3
+ import { ReactQueryNetworkClient } from '../network/ReactQueryNetworkClient.js';
4
+ declare class GenAiInference extends ReactQueryNetworkClient {
5
+ constructor();
6
+ protected buildStackSpotError(error: HttpError): StackspotAPIError;
7
+ /**
8
+ * List all models.
9
+ */
10
+ listModels: import("../network/types.js").QueryObject<Omit<{
11
+ active?: boolean | null | undefined;
12
+ resource?: string | null | undefined;
13
+ $default?: boolean | null | undefined;
14
+ xAccountId?: string | null | undefined;
15
+ authorization: string;
16
+ }, "authorization" | "jwtToken"> & {}, import("../api/genAiInference.js").LlmModelsResponse[]>;
17
+ /**
18
+ * Gets model by ID.
19
+ */
20
+ getModel: import("../network/types.js").QueryObject<Omit<{
21
+ modelId: string;
22
+ xAccountId?: string | null | undefined;
23
+ authorization: string;
24
+ }, "authorization" | "jwtToken"> & {}, import("../api/genAiInference.js").LlmModelsResponse>;
25
+ /**
26
+ * Updates model by ID.
27
+ */
28
+ updateModel: import("../network/types.js").MutationObject<Omit<{
29
+ modelId: string;
30
+ xAccountId?: string | null | undefined;
31
+ authorization: string;
32
+ updateLlmModelRequest: import("../api/genAiInference.js").UpdateLlmModelRequest;
33
+ }, "authorization" | "jwtToken"> & {}, import("../api/genAiInference.js").LlmModelsResponse>;
34
+ /**
35
+ * Updates resources for a specific model ID.
36
+ */
37
+ updateModelResource: import("../network/types.js").MutationObject<Omit<{
38
+ modelId: string;
39
+ xAccountId?: string | null | undefined;
40
+ authorization: string;
41
+ body: import("../api/genAiInference.js").UpdateLlmModelResourceRequest[];
42
+ }, "authorization" | "jwtToken"> & {}, any>;
43
+ /**
44
+ * Deletes a specific model resource by resource ID.
45
+ */
46
+ deleteModelResource: import("../network/types.js").MutationObject<Omit<{
47
+ resourceId: string;
48
+ xAccountId?: string | null | undefined;
49
+ authorization: string;
50
+ }, "authorization" | "jwtToken"> & {}, any>;
51
+ }
52
+ export declare const genAiInferenceClient: GenAiInference;
53
+ export {};
54
+ //# sourceMappingURL=gen-ai-inference.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"gen-ai-inference.d.ts","sourceRoot":"","sources":["../../src/client/gen-ai-inference.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAA;AAE7C,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAA;AAC9D,OAAO,EAAE,uBAAuB,EAAE,MAAM,oCAAoC,CAAA;AAO5E,cAAM,cAAe,SAAQ,uBAAuB;;IAKlD,SAAS,CAAC,mBAAmB,CAAC,KAAK,EAAE,SAAS,GAAG,iBAAiB;IAIlE;;OAEG;IACH,UAAU;;;;;;gGAAiE;IAE3E;;OAEG;IACH,QAAQ;;;;8FAAsE;IAE9E;;OAEG;IACH,WAAW;;;;;8FAA8E;IAEzF;;OAEG;IACH,mBAAmB;;;;;gDAAoG;IAEvH;;OAEG;IACH,mBAAmB;;;;gDAA8F;CAClH;AAED,eAAO,MAAM,oBAAoB,gBAAuB,CAAA"}
@@ -0,0 +1,61 @@
1
+ import apis from '../apis.json';
2
+ import { ReactQueryNetworkClient } from '../network/ReactQueryNetworkClient.js';
3
+ import { defaults, deleteModelResourcesV1LlmResourcesResourceIdDelete, getModelV1LlmModelsModelIdGet, listModelsV1LlmModelsGet, saveOrUpdateModelResourcesV1LlmModelsModelIdResourcesPut, updateModelV1LlmModelsModelIdPatch } from '../api/genAiInference.js';
4
+ import { DefaultAPIError } from '../error/DefaultAPIError.js';
5
+ import { inferenceDictionary } from '../error/dictionary/ai-inference.js';
6
+ import { removeAuthorizationParam } from '../utils/remove-authorization-param.js';
7
+ class GenAiInference extends ReactQueryNetworkClient {
8
+ constructor() {
9
+ super(apis.genAiInference.url, defaults);
10
+ /**
11
+ * List all models.
12
+ */
13
+ Object.defineProperty(this, "listModels", {
14
+ enumerable: true,
15
+ configurable: true,
16
+ writable: true,
17
+ value: this.query(removeAuthorizationParam(listModelsV1LlmModelsGet))
18
+ });
19
+ /**
20
+ * Gets model by ID.
21
+ */
22
+ Object.defineProperty(this, "getModel", {
23
+ enumerable: true,
24
+ configurable: true,
25
+ writable: true,
26
+ value: this.query(removeAuthorizationParam(getModelV1LlmModelsModelIdGet))
27
+ });
28
+ /**
29
+ * Updates model by ID.
30
+ */
31
+ Object.defineProperty(this, "updateModel", {
32
+ enumerable: true,
33
+ configurable: true,
34
+ writable: true,
35
+ value: this.mutation(removeAuthorizationParam(updateModelV1LlmModelsModelIdPatch))
36
+ });
37
+ /**
38
+ * Updates resources for a specific model ID.
39
+ */
40
+ Object.defineProperty(this, "updateModelResource", {
41
+ enumerable: true,
42
+ configurable: true,
43
+ writable: true,
44
+ value: this.mutation(removeAuthorizationParam(saveOrUpdateModelResourcesV1LlmModelsModelIdResourcesPut))
45
+ });
46
+ /**
47
+ * Deletes a specific model resource by resource ID.
48
+ */
49
+ Object.defineProperty(this, "deleteModelResource", {
50
+ enumerable: true,
51
+ configurable: true,
52
+ writable: true,
53
+ value: this.mutation(removeAuthorizationParam(deleteModelResourcesV1LlmResourcesResourceIdDelete))
54
+ });
55
+ }
56
+ buildStackSpotError(error) {
57
+ return new DefaultAPIError(error.data, error.status, inferenceDictionary, error.headers);
58
+ }
59
+ }
60
+ export const genAiInferenceClient = new GenAiInference();
61
+ //# sourceMappingURL=gen-ai-inference.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"gen-ai-inference.js","sourceRoot":"","sources":["../../src/client/gen-ai-inference.ts"],"names":[],"mappings":"AAEA,OAAO,IAAI,MAAM,cAAc,CAAA;AAE/B,OAAO,EAAE,uBAAuB,EAAE,MAAM,oCAAoC,CAAA;AAE5E,OAAO,EAAE,QAAQ,EAAE,kDAAkD,EAAE,6BAA6B,EAAE,wBAAwB,EAAE,wDAAwD,EAAE,kCAAkC,EAAE,MAAM,uBAAuB,CAAA;AAC3P,OAAO,EAAE,eAAe,EAAE,MAAM,0BAA0B,CAAA;AAC1D,OAAO,EAAE,mBAAmB,EAAE,MAAM,kCAAkC,CAAA;AACtE,OAAO,EAAE,wBAAwB,EAAE,MAAM,qCAAqC,CAAA;AAE9E,MAAM,cAAe,SAAQ,uBAAuB;IAClD;QACE,KAAK,CAAC,IAAI,CAAC,cAAc,CAAC,GAAG,EAAE,QAAQ,CAAC,CAAA;QAO1C;;WAEG;QACH;;;;mBAAa,IAAI,CAAC,KAAK,CAAC,wBAAwB,CAAC,wBAAwB,CAAC,CAAC;WAAA;QAE3E;;WAEG;QACH;;;;mBAAW,IAAI,CAAC,KAAK,CAAC,wBAAwB,CAAC,6BAA6B,CAAC,CAAC;WAAA;QAE9E;;WAEG;QACH;;;;mBAAc,IAAI,CAAC,QAAQ,CAAC,wBAAwB,CAAC,kCAAkC,CAAC,CAAC;WAAA;QAEzF;;WAEG;QACH;;;;mBAAsB,IAAI,CAAC,QAAQ,CAAC,wBAAwB,CAAC,wDAAwD,CAAC,CAAC;WAAA;QAEvH;;WAEG;QACH;;;;mBAAsB,IAAI,CAAC,QAAQ,CAAC,wBAAwB,CAAC,kDAAkD,CAAC,CAAC;WAAA;IA7BjH,CAAC;IAES,mBAAmB,CAAC,KAAgB;QAC5C,OAAO,IAAI,eAAe,CAAC,KAAK,CAAC,IAAI,EAAE,KAAK,CAAC,MAAM,EAAE,mBAAmB,EAAE,KAAK,CAAC,OAAO,CAAC,CAAA;IAC1F,CAAC;CA0BF;AAED,MAAM,CAAC,MAAM,oBAAoB,GAAG,IAAI,cAAc,EAAE,CAAA"}
@@ -0,0 +1,27 @@
1
+ export declare const inferenceDictionary: {
2
+ en: {
3
+ INFERENCE_2500_AGENT_TOOL_INTEGRATION_ERROR: string;
4
+ INFERENCE_2501_MODEL_DOES_NOT_EXISTS: string;
5
+ INFERENCE_2502_MODEL_RESOURCE_DOES_NOT_EXISTS: string;
6
+ INFERENCE_2503_UNABLE_TO_DELETE_DEFAULT_MODEL_RESOURCE: string;
7
+ INFERENCE_2504_MODEL_RESOURCE_DEFAULT_UPDATE_NOT_ALLOWED: string;
8
+ INFERENCE_2505_MODEL_DEFAULT_RESOURCES: string;
9
+ INFERENCE_3001_SELF_HOSTED_PROVIDER_WITHOUT_ACCOUNT_ID: string;
10
+ INFERENCE_3002_MODEL_NOT_ACTIVE: string;
11
+ INFERENCE_3003_LLM_PROVIDER_NOT_SUPPORTED: string;
12
+ INFERENCE_3004_INVALID_REQUESTED_MODEL: string;
13
+ };
14
+ pt: {
15
+ INFERENCE_2500_AGENT_TOOL_INTEGRATION_ERROR: string;
16
+ INFERENCE_2501_MODEL_DOES_NOT_EXISTS: string;
17
+ INFERENCE_2502_MODEL_RESOURCE_DOES_NOT_EXISTS: string;
18
+ INFERENCE_2503_UNABLE_TO_DELETE_DEFAULT_MODEL_RESOURCE: string;
19
+ INFERENCE_2504_MODEL_RESOURCE_DEFAULT_UPDATE_NOT_ALLOWED: string;
20
+ INFERENCE_2505_MODEL_DEFAULT_RESOURCES: string;
21
+ INFERENCE_3001_SELF_HOSTED_PROVIDER_WITHOUT_ACCOUNT_ID: string;
22
+ INFERENCE_3002_MODEL_NOT_ACTIVE: string;
23
+ INFERENCE_3003_LLM_PROVIDER_NOT_SUPPORTED: string;
24
+ INFERENCE_3004_INVALID_REQUESTED_MODEL: string;
25
+ };
26
+ };
27
+ //# sourceMappingURL=ai-inference.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ai-inference.d.ts","sourceRoot":"","sources":["../../../src/error/dictionary/ai-inference.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;CAyBV,CAAA"}
@@ -0,0 +1,27 @@
1
+ export const inferenceDictionary = {
2
+ en: {
3
+ INFERENCE_2500_AGENT_TOOL_INTEGRATION_ERROR: 'Error integrating with the agent tool.',
4
+ INFERENCE_2501_MODEL_DOES_NOT_EXISTS: 'Model does not exists.',
5
+ INFERENCE_2502_MODEL_RESOURCE_DOES_NOT_EXISTS: 'Model resource does not exists',
6
+ INFERENCE_2503_UNABLE_TO_DELETE_DEFAULT_MODEL_RESOURCE: 'Unable to delete the default model resource.',
7
+ INFERENCE_2504_MODEL_RESOURCE_DEFAULT_UPDATE_NOT_ALLOWED: 'Cannot update default resource {1} to non-default',
8
+ INFERENCE_2505_MODEL_DEFAULT_RESOURCES: 'Cannot deactivate model with default resources',
9
+ INFERENCE_3001_SELF_HOSTED_PROVIDER_WITHOUT_ACCOUNT_ID: 'Self-hosted provider is missing an account ID.',
10
+ INFERENCE_3002_MODEL_NOT_ACTIVE: 'The model is not active.',
11
+ INFERENCE_3003_LLM_PROVIDER_NOT_SUPPORTED: 'The LLM provider is not supported.',
12
+ INFERENCE_3004_INVALID_REQUESTED_MODEL: 'The requested model is invalid.',
13
+ },
14
+ pt: {
15
+ INFERENCE_2500_AGENT_TOOL_INTEGRATION_ERROR: 'Erro ao integrar com a ferramenta do agente.',
16
+ INFERENCE_2501_MODEL_DOES_NOT_EXISTS: 'O modelo especificado não existe.',
17
+ INFERENCE_2502_MODEL_RESOURCE_DOES_NOT_EXISTS: 'O recurso do modelo não existe.',
18
+ INFERENCE_2503_UNABLE_TO_DELETE_DEFAULT_MODEL_RESOURCE: 'Não é possível excluir o recurso padrão do modelo.',
19
+ INFERENCE_2504_MODEL_RESOURCE_DEFAULT_UPDATE_NOT_ALLOWED: 'Não é possível atualizar o recurso padrão {1} para não padrão.',
20
+ INFERENCE_2505_MODEL_DEFAULT_RESOURCES: 'Não é possível desativar o modelo com recursos padrão.',
21
+ INFERENCE_3001_SELF_HOSTED_PROVIDER_WITHOUT_ACCOUNT_ID: 'O provedor auto-hospedado está sem um ID de conta.',
22
+ INFERENCE_3002_MODEL_NOT_ACTIVE: 'O modelo não está ativo.',
23
+ INFERENCE_3003_LLM_PROVIDER_NOT_SUPPORTED: 'O provedor LLM não é suportado.',
24
+ INFERENCE_3004_INVALID_REQUESTED_MODEL: 'O modelo solicitado é inválido.',
25
+ },
26
+ };
27
+ //# sourceMappingURL=ai-inference.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ai-inference.js","sourceRoot":"","sources":["../../../src/error/dictionary/ai-inference.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,mBAAmB,GAAG;IACjC,EAAE,EAAE;QACF,2CAA2C,EAAE,wCAAwC;QACrF,oCAAoC,EAAE,wBAAwB;QAC9D,6CAA6C,EAAE,gCAAgC;QAC/E,sDAAsD,EAAE,8CAA8C;QACtG,wDAAwD,EAAE,mDAAmD;QAC7G,sCAAsC,EAAE,gDAAgD;QACxF,sDAAsD,EAAE,gDAAgD;QACxG,+BAA+B,EAAE,0BAA0B;QAC3D,yCAAyC,EAAE,oCAAoC;QAC/E,sCAAsC,EAAE,iCAAiC;KAC1E;IACD,EAAE,EAAE;QACF,2CAA2C,EAAE,8CAA8C;QAC3F,oCAAoC,EAAE,mCAAmC;QACzE,6CAA6C,EAAE,iCAAiC;QAChF,sDAAsD,EAAE,oDAAoD;QAC5G,wDAAwD,EAAE,gEAAgE;QAC1H,sCAAsC,EAAE,wDAAwD;QAChG,sDAAsD,EAAE,oDAAoD;QAC5G,+BAA+B,EAAE,0BAA0B;QAC3D,yCAAyC,EAAE,iCAAiC;QAC5E,sCAAsC,EAAE,iCAAiC;KAC1E;CACmB,CAAA"}
package/dist/index.d.ts CHANGED
@@ -12,6 +12,7 @@ export { cloudServicesClient } from './client/cloud-services.js';
12
12
  export { codeShiftClient } from './client/code-shift.js';
13
13
  export { contentClient } from './client/content.js';
14
14
  export { eventBusClient } from './client/event-bus.js';
15
+ export { genAiInferenceClient } from './client/gen-ai-inference.js';
15
16
  export { insightsClient } from './client/insights.js';
16
17
  export { notificationClient } from './client/notification.js';
17
18
  export { runtimeManagerClient } from './client/runtime-manager.js';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAA;AACtD,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAA;AAC9C,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAA;AAChD,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAA;AAC5C,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAA;AACvD,OAAO,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAA;AACtC,OAAO,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAA;AAC3D,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAA;AAC7D,OAAO,EAAE,0BAA0B,EAAE,MAAM,iCAAiC,CAAA;AAC5E,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAA;AAC7D,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAA;AAC7D,OAAO,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAA;AACrD,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAA;AAChD,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAA;AACnD,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAA;AAClD,OAAO,EAAE,kBAAkB,EAAE,MAAM,uBAAuB,CAAA;AAC1D,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAA;AAC/D,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAA;AAChD,cAAc,gBAAgB,CAAA;AAC9B,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAA;AAClD,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAA;AACpD,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAA;AACzD,OAAO,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAA;AACnE,OAAO,EAAE,qBAAqB,EAAE,MAAM,2BAA2B,CAAA;AACjE,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAA;AACzD,OAAO,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAA;AAC7D,OAAO,EAAE,mBAAmB,EAAE,MAAM,6BAA6B,CAAA;AACjE,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAA;AACjD,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAA;AACzD,OAAO,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAA;AACvD,OAAO,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAA;AAC1D,OAAO,EAAE,eAAe,EAAE,kBAAkB,EAAE,qBAAqB,EAAE,MAAM,iBAAiB,CAAA;AAC5F,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAA;AACnD,OAAO,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAA;AACtD,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAA;AAC9C,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAA;AAChD,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAA;AAC5C,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAA;AACvD,OAAO,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAA;AACtC,OAAO,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAA;AAC3D,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAA;AAC7D,OAAO,EAAE,0BAA0B,EAAE,MAAM,iCAAiC,CAAA;AAC5E,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAA;AAC7D,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAA;AAC7D,OAAO,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAA;AACrD,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAA;AAChD,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAA;AACnD,OAAO,EAAE,oBAAoB,EAAE,MAAM,2BAA2B,CAAA;AAChE,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAA;AAClD,OAAO,EAAE,kBAAkB,EAAE,MAAM,uBAAuB,CAAA;AAC1D,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAA;AAC/D,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAA;AAChD,cAAc,gBAAgB,CAAA;AAC9B,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAA;AAClD,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAA;AACpD,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAA;AACzD,OAAO,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAA;AACnE,OAAO,EAAE,qBAAqB,EAAE,MAAM,2BAA2B,CAAA;AACjE,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAA;AACzD,OAAO,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAA;AAC7D,OAAO,EAAE,mBAAmB,EAAE,MAAM,6BAA6B,CAAA;AACjE,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAA;AACjD,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAA;AACzD,OAAO,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAA;AACvD,OAAO,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAA;AAC1D,OAAO,EAAE,eAAe,EAAE,kBAAkB,EAAE,qBAAqB,EAAE,MAAM,iBAAiB,CAAA;AAC5F,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAA;AACnD,OAAO,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAA"}
package/dist/index.js CHANGED
@@ -12,6 +12,7 @@ export { cloudServicesClient } from './client/cloud-services.js';
12
12
  export { codeShiftClient } from './client/code-shift.js';
13
13
  export { contentClient } from './client/content.js';
14
14
  export { eventBusClient } from './client/event-bus.js';
15
+ export { genAiInferenceClient } from './client/gen-ai-inference.js';
15
16
  export { insightsClient } from './client/insights.js';
16
17
  export { notificationClient } from './client/notification.js';
17
18
  export { runtimeManagerClient } from './client/runtime-manager.js';
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAA;AACtD,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAA;AAC9C,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAA;AAChD,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAA;AAC5C,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAA;AACvD,OAAO,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAA;AACtC,OAAO,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAA;AAC3D,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAA;AAC7D,OAAO,EAAE,0BAA0B,EAAE,MAAM,iCAAiC,CAAA;AAC5E,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAA;AAC7D,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAA;AAC7D,OAAO,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAA;AACrD,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAA;AAChD,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAA;AACnD,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAA;AAClD,OAAO,EAAE,kBAAkB,EAAE,MAAM,uBAAuB,CAAA;AAC1D,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAA;AAC/D,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAA;AAChD,cAAc,gBAAgB,CAAA;AAC9B,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAA;AAClD,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAA;AACpD,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAA;AACzD,OAAO,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAA;AACnE,OAAO,EAAE,qBAAqB,EAAE,MAAM,2BAA2B,CAAA;AACjE,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAA;AACzD,OAAO,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAA;AAC7D,OAAO,EAAE,mBAAmB,EAAE,MAAM,6BAA6B,CAAA;AACjE,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAA;AACjD,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAA;AACzD,OAAO,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAA;AACvD,OAAO,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAA;AAE1D,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAA;AACnD,OAAO,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAA;AACtD,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAA;AAC9C,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAA;AAChD,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAA;AAC5C,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAA;AACvD,OAAO,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAA;AACtC,OAAO,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAA;AAC3D,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAA;AAC7D,OAAO,EAAE,0BAA0B,EAAE,MAAM,iCAAiC,CAAA;AAC5E,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAA;AAC7D,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAA;AAC7D,OAAO,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAA;AACrD,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAA;AAChD,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAA;AACnD,OAAO,EAAE,oBAAoB,EAAE,MAAM,2BAA2B,CAAA;AAChE,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAA;AAClD,OAAO,EAAE,kBAAkB,EAAE,MAAM,uBAAuB,CAAA;AAC1D,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAA;AAC/D,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAA;AAChD,cAAc,gBAAgB,CAAA;AAC9B,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAA;AAClD,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAA;AACpD,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAA;AACzD,OAAO,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAA;AACnE,OAAO,EAAE,qBAAqB,EAAE,MAAM,2BAA2B,CAAA;AACjE,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAA;AACzD,OAAO,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAA;AAC7D,OAAO,EAAE,mBAAmB,EAAE,MAAM,6BAA6B,CAAA;AACjE,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAA;AACjD,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAA;AACzD,OAAO,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAA;AACvD,OAAO,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAA;AAE1D,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAA;AACnD,OAAO,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stack-spot/portal-network",
3
- "version": "0.113.5",
3
+ "version": "0.113.7",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -0,0 +1,467 @@
1
+ /**
2
+ * FastAPI
3
+ * 0.1.0
4
+ * DO NOT MODIFY - This file has been generated using oazapfts.
5
+ * See https://www.npmjs.com/package/oazapfts
6
+ */
7
+ import * as Oazapfts from "@oazapfts/runtime";
8
+ import * as QS from "@oazapfts/runtime/query";
9
+ export const defaults: Oazapfts.Defaults<Oazapfts.CustomHeaders> = {
10
+ headers: {},
11
+ baseUrl: "/",
12
+ };
13
+ const oazapfts = Oazapfts.runtime(defaults);
14
+ export const servers = {};
15
+ export type LlmRoles = "system" | "user" | "assistant" | "function" | "tool";
16
+ export type SendMessage = {
17
+ role: LlmRoles;
18
+ content: string;
19
+ };
20
+ export type SendConversation = {
21
+ model_name: string;
22
+ messages: SendMessage[];
23
+ temperature?: number | null;
24
+ json_schema?: {
25
+ [key: string]: any;
26
+ } | null;
27
+ is_azure?: boolean | null;
28
+ };
29
+ export type MessageRepresentation = {
30
+ /** The role of the sender of the message (e.g., 'user', 'assistant', 'system', 'tool'). */
31
+ role: string;
32
+ /** The content of the message. */
33
+ content: string;
34
+ /** The name of the sender, if applicable. */
35
+ name?: string | null;
36
+ /** A dictionary representing a function call, if applicable. */
37
+ function_call?: {
38
+ [key: string]: any;
39
+ } | null;
40
+ };
41
+ export type ChoiceRepresentation = {
42
+ message: MessageRepresentation;
43
+ finish_reason: string;
44
+ index: number;
45
+ };
46
+ export type UsageRepresentation = {
47
+ prompt_tokens: number;
48
+ completion_tokens: number;
49
+ total_tokens: number;
50
+ };
51
+ export type MetricsRepresentation = {
52
+ latency_ms: number;
53
+ };
54
+ export type ConversationRepresentation = {
55
+ id: string;
56
+ choices: ChoiceRepresentation[];
57
+ created: string;
58
+ model: string;
59
+ "object"?: string;
60
+ usage: UsageRepresentation;
61
+ metrics?: MetricsRepresentation | null;
62
+ };
63
+ export type ValidationError = {
64
+ loc: (string | number)[];
65
+ msg: string;
66
+ "type": string;
67
+ };
68
+ export type HttpValidationError = {
69
+ detail?: ValidationError[];
70
+ };
71
+ export type FunctionCall = {
72
+ /** The name of the function to call */
73
+ name: string;
74
+ /** A JSON string representing the function arguments */
75
+ arguments: string;
76
+ };
77
+ export type Message = {
78
+ /** The role of the message (system, user, assistant, or function) */
79
+ role: LlmRoles;
80
+ /** The content of the message */
81
+ content: string;
82
+ /** The name of the sender (optional) */
83
+ name?: string | null;
84
+ /** Details of a function call (optional) */
85
+ function_call?: FunctionCall | null;
86
+ };
87
+ export type FunctionParameter = {
88
+ /** The type of the parameter */
89
+ "type": string;
90
+ /** A description of the parameter (optional) */
91
+ description?: string | null;
92
+ /** A list of possible values for the parameter (optional) */
93
+ "enum"?: string[] | null;
94
+ /** A dictionary of properties for the parameter (optional) */
95
+ properties?: {
96
+ [key: string]: any;
97
+ } | null;
98
+ /** A list of required parameters (optional) */
99
+ required?: string[] | null;
100
+ /** Allow arbitrary data of specific typed */
101
+ additionalProperties?: boolean;
102
+ };
103
+ export type Function = {
104
+ /** The name of the function */
105
+ name: string;
106
+ /** A description of what the function does */
107
+ description: string;
108
+ /** The parameters required by the function */
109
+ parameters: FunctionParameter;
110
+ /** Strict specific schema response. Only `strict` function tools can be auto-parsed */
111
+ strict: boolean;
112
+ };
113
+ export type ChatCompletion = {
114
+ /** The model to be used for the chat completion */
115
+ model: string;
116
+ /** A list of messages that make up the conversation */
117
+ messages: Message[];
118
+ /** Sampling temperature; higher values make output more random */
119
+ temperature?: number;
120
+ /** Nucleus sampling probability; controls diversity */
121
+ top_p?: number;
122
+ /** Number of completions to generate */
123
+ n?: number;
124
+ /** Whether to stream the response */
125
+ stream?: boolean;
126
+ /** Stop sequences that will halt the generation */
127
+ stop?: string | string[] | null;
128
+ /** Maximum number of tokens to generate */
129
+ max_tokens?: number | null;
130
+ /** Penalty based on new tokens' presence in the text */
131
+ presence_penalty?: number;
132
+ /** Penalty based on new tokens' frequency in the text */
133
+ frequency_penalty?: number;
134
+ /** A dictionary to adjust the likelihood of specific tokens */
135
+ logit_bias?: {
136
+ [key: string]: number;
137
+ } | null;
138
+ /** An identifier for the user */
139
+ user?: string | null;
140
+ /** A list of functions that can be called during the chat */
141
+ functions?: Function[] | null;
142
+ /** Specifies function call behavior or parameters (for example, 'auto' or {'name': 'function_name'}) */
143
+ function_call?: string | {
144
+ [key: string]: string;
145
+ } | null;
146
+ };
147
+ export type StateType = "chat" | "planning" | "step" | "final_answer" | "tool" | "used_tools";
148
+ export type StateAction = "start" | "end";
149
+ export type StepTool = {
150
+ /** Unique ULID identifier for the tool. LLM always sends null. */
151
+ agent_tool_id: string | null;
152
+ /** Unique ULID identifier for the tool. LLM always sends null. */
153
+ tool_id: string | null;
154
+ /** Unique ULID identifier for tool execution in a step. LLM always sends null. */
155
+ tool_execution_id: string | null;
156
+ /** Exact name of the function to execute. Must include a ULID and starting with 'agt_id__' */
157
+ name: string | null;
158
+ /** JSON string of arguments required to execute the tool. */
159
+ arguments: string | null;
160
+ };
161
+ export type Step = {
162
+ /** Unique ULID identifier for the step. LLM sends null by default. */
163
+ id: string | null;
164
+ /** Brief goal of the step. Use the same language provided by the user without repeating the prompt. Example.: Generate image in oil painting style */
165
+ goal: string;
166
+ /** List of tools to execute in parallel in this step. */
167
+ tools: StepTool[] | null;
168
+ };
169
+ export type Plan = {
170
+ /** Brief description of the expected action and the number of necessary steps (max 100 characters). */
171
+ plan_goal?: string | null;
172
+ /** Total number of steps, including the final response step. */
173
+ total_steps?: number | null;
174
+ /** List of steps to be executed, including the final user response step. */
175
+ steps?: Step[] | null;
176
+ };
177
+ export type Score = {
178
+ /** A score between 0.0 and 1.0 indicating how well the response met the user's requirements. */
179
+ score: number;
180
+ };
181
+ export type ToolInput = {
182
+ input?: {
183
+ [key: string]: any;
184
+ } | null;
185
+ attempt: number;
186
+ };
187
+ export type ToolOutput = {
188
+ output?: string | null;
189
+ attempt: number;
190
+ };
191
+ export type ProcessState = {
192
+ "type": StateType;
193
+ action: StateAction;
194
+ id?: string | null;
195
+ duration?: number | null;
196
+ data?: Plan | Score | ToolInput | ToolOutput | null;
197
+ };
198
+ export type LlmProviderResponse = {
199
+ id: string;
200
+ name: string;
201
+ provider_type: string;
202
+ };
203
+ export type LlmModelConfigurationResponse = {
204
+ id: string;
205
+ usage_params: {
206
+ [key: string]: any;
207
+ } | null;
208
+ model_name: string;
209
+ provider: LlmProviderResponse;
210
+ };
211
+ export type LlmModelResourcesResponse = {
212
+ id: string;
213
+ model_id: string;
214
+ resource_name: string;
215
+ is_default: boolean;
216
+ };
217
+ export type LlmModelsResponse = {
218
+ id: string;
219
+ active: boolean;
220
+ display_name: string;
221
+ self_hosted: boolean;
222
+ model_configuration: LlmModelConfigurationResponse;
223
+ resources: LlmModelResourcesResponse[];
224
+ created_at: string;
225
+ updated_at: string;
226
+ updated_by: string;
227
+ };
228
+ export type UpdateLlmModelRequest = {
229
+ active: boolean;
230
+ };
231
+ export type UpdateLlmModelResourceRequest = {
232
+ resource_name: string;
233
+ is_default?: boolean;
234
+ };
235
+ /**
236
+ * Health Check
237
+ */
238
+ export function healthCheckHealthzGet(opts?: Oazapfts.RequestOpts) {
239
+ return oazapfts.ok(oazapfts.fetchJson<{
240
+ status: 200;
241
+ data: any;
242
+ } | {
243
+ status: 404;
244
+ }>("/healthz", {
245
+ ...opts
246
+ }));
247
+ }
248
+ /**
249
+ * Handle conversation requests
250
+ */
251
+ export function converseV0ConversationPost({ xAccountId, authorization, sendConversation }: {
252
+ xAccountId?: string | null;
253
+ authorization: string;
254
+ sendConversation: SendConversation;
255
+ }, opts?: Oazapfts.RequestOpts) {
256
+ return oazapfts.ok(oazapfts.fetchJson<{
257
+ status: 200;
258
+ data: ConversationRepresentation;
259
+ } | {
260
+ status: 404;
261
+ } | {
262
+ status: 422;
263
+ data: HttpValidationError;
264
+ }>("/v0/conversation", oazapfts.json({
265
+ ...opts,
266
+ method: "POST",
267
+ body: sendConversation,
268
+ headers: oazapfts.mergeHeaders(opts?.headers, {
269
+ "x-account-id": xAccountId,
270
+ authorization
271
+ })
272
+ })));
273
+ }
274
+ /**
275
+ * Execute an agent with tool orchestration
276
+ */
277
+ export function chatCompletionV1AgentAgentIdDetailModeChatCompletionsPost({ agentId, detailMode, chatCompletion }: {
278
+ agentId: string;
279
+ detailMode: boolean;
280
+ chatCompletion: ChatCompletion;
281
+ }, opts?: Oazapfts.RequestOpts) {
282
+ return oazapfts.ok(oazapfts.fetchJson<{
283
+ status: 200;
284
+ data: any;
285
+ } | {
286
+ status: 404;
287
+ } | {
288
+ status: 422;
289
+ data: HttpValidationError;
290
+ }>(`/v1/agent/${encodeURIComponent(agentId)}/${encodeURIComponent(detailMode)}/chat/completions`, oazapfts.json({
291
+ ...opts,
292
+ method: "POST",
293
+ body: chatCompletion
294
+ })));
295
+ }
296
+ /**
297
+ * Fake For Doc
298
+ */
299
+ export function fakeForDocV1FakeForDocOnlyGet(opts?: Oazapfts.RequestOpts) {
300
+ return oazapfts.ok(oazapfts.fetchJson<{
301
+ status: 200;
302
+ data: ProcessState | null;
303
+ } | {
304
+ status: 404;
305
+ }>("/v1/fake_for_doc_only", {
306
+ ...opts
307
+ }));
308
+ }
309
+ /**
310
+ * List Models
311
+ */
312
+ export function listModelsV1LlmModelsGet({ active, resource, $default, xAccountId, authorization }: {
313
+ active?: boolean | null;
314
+ resource?: string | null;
315
+ $default?: boolean | null;
316
+ xAccountId?: string | null;
317
+ authorization: string;
318
+ }, opts?: Oazapfts.RequestOpts) {
319
+ return oazapfts.ok(oazapfts.fetchJson<{
320
+ status: 200;
321
+ data: LlmModelsResponse[];
322
+ } | {
323
+ status: 404;
324
+ } | {
325
+ status: 422;
326
+ data: HttpValidationError;
327
+ }>(`/v1/llm/models${QS.query(QS.explode({
328
+ active,
329
+ resource,
330
+ "default": $default
331
+ }))}`, {
332
+ ...opts,
333
+ headers: oazapfts.mergeHeaders(opts?.headers, {
334
+ "x-account-id": xAccountId,
335
+ authorization
336
+ })
337
+ }));
338
+ }
339
+ /**
340
+ * Get Model
341
+ */
342
+ export function getModelV1LlmModelsModelIdGet({ modelId, xAccountId, authorization }: {
343
+ modelId: string;
344
+ xAccountId?: string | null;
345
+ authorization: string;
346
+ }, opts?: Oazapfts.RequestOpts) {
347
+ return oazapfts.ok(oazapfts.fetchJson<{
348
+ status: 200;
349
+ data: LlmModelsResponse;
350
+ } | {
351
+ status: 404;
352
+ } | {
353
+ status: 422;
354
+ data: HttpValidationError;
355
+ }>(`/v1/llm/models/${encodeURIComponent(modelId)}`, {
356
+ ...opts,
357
+ headers: oazapfts.mergeHeaders(opts?.headers, {
358
+ "x-account-id": xAccountId,
359
+ authorization
360
+ })
361
+ }));
362
+ }
363
+ /**
364
+ * Update Model
365
+ */
366
+ export function updateModelV1LlmModelsModelIdPatch({ modelId, xAccountId, authorization, updateLlmModelRequest }: {
367
+ modelId: string;
368
+ xAccountId?: string | null;
369
+ authorization: string;
370
+ updateLlmModelRequest: UpdateLlmModelRequest;
371
+ }, opts?: Oazapfts.RequestOpts) {
372
+ return oazapfts.ok(oazapfts.fetchJson<{
373
+ status: 200;
374
+ data: LlmModelsResponse;
375
+ } | {
376
+ status: 404;
377
+ } | {
378
+ status: 422;
379
+ data: HttpValidationError;
380
+ }>(`/v1/llm/models/${encodeURIComponent(modelId)}`, oazapfts.json({
381
+ ...opts,
382
+ method: "PATCH",
383
+ body: updateLlmModelRequest,
384
+ headers: oazapfts.mergeHeaders(opts?.headers, {
385
+ "x-account-id": xAccountId,
386
+ authorization
387
+ })
388
+ })));
389
+ }
390
+ /**
391
+ * Save Or Update Model Resources
392
+ */
393
+ export function saveOrUpdateModelResourcesV1LlmModelsModelIdResourcesPut({ modelId, xAccountId, authorization, body }: {
394
+ modelId: string;
395
+ xAccountId?: string | null;
396
+ authorization: string;
397
+ body: UpdateLlmModelResourceRequest[];
398
+ }, opts?: Oazapfts.RequestOpts) {
399
+ return oazapfts.ok(oazapfts.fetchJson<{
400
+ status: 200;
401
+ data: any;
402
+ } | {
403
+ status: 404;
404
+ } | {
405
+ status: 422;
406
+ data: HttpValidationError;
407
+ }>(`/v1/llm/models/${encodeURIComponent(modelId)}/resources`, oazapfts.json({
408
+ ...opts,
409
+ method: "PUT",
410
+ body,
411
+ headers: oazapfts.mergeHeaders(opts?.headers, {
412
+ "x-account-id": xAccountId,
413
+ authorization
414
+ })
415
+ })));
416
+ }
417
+ /**
418
+ * Delete Model Resources
419
+ */
420
+ export function deleteModelResourcesV1LlmResourcesResourceIdDelete({ resourceId, xAccountId, authorization }: {
421
+ resourceId: string;
422
+ xAccountId?: string | null;
423
+ authorization: string;
424
+ }, opts?: Oazapfts.RequestOpts) {
425
+ return oazapfts.ok(oazapfts.fetchJson<{
426
+ status: 200;
427
+ data: any;
428
+ } | {
429
+ status: 404;
430
+ } | {
431
+ status: 422;
432
+ data: HttpValidationError;
433
+ }>(`/v1/llm/resources/${encodeURIComponent(resourceId)}`, {
434
+ ...opts,
435
+ method: "DELETE",
436
+ headers: oazapfts.mergeHeaders(opts?.headers, {
437
+ "x-account-id": xAccountId,
438
+ authorization
439
+ })
440
+ }));
441
+ }
442
+ /**
443
+ * Handle completions requests
444
+ */
445
+ export function createCompletionsV1ChatCompletionsPost({ xAccountId, authorization, chatCompletion }: {
446
+ xAccountId?: string | null;
447
+ authorization: string;
448
+ chatCompletion: ChatCompletion;
449
+ }, opts?: Oazapfts.RequestOpts) {
450
+ return oazapfts.ok(oazapfts.fetchJson<{
451
+ status: 200;
452
+ data: any;
453
+ } | {
454
+ status: 404;
455
+ } | {
456
+ status: 422;
457
+ data: HttpValidationError;
458
+ }>("/v1/chat/completions", oazapfts.json({
459
+ ...opts,
460
+ method: "POST",
461
+ body: chatCompletion,
462
+ headers: oazapfts.mergeHeaders(opts?.headers, {
463
+ "x-account-id": xAccountId,
464
+ authorization
465
+ })
466
+ })));
467
+ }
package/src/apis.json CHANGED
@@ -197,5 +197,13 @@
197
197
  "prd": "https://code-shift-api.stackspot.com"
198
198
  },
199
199
  "docs": "/openapi.json"
200
+ },
201
+ "genAiInference": {
202
+ "url": {
203
+ "dev": "https://genai-inference-app.dev.stackspot.com",
204
+ "stg": "https://genai-inference-app.stg.stackspot.com",
205
+ "prd": "https://genai-inference-app.stg.stackspot.com"
206
+ },
207
+ "docs": "/openapi.json"
200
208
  }
201
209
  }
@@ -0,0 +1,47 @@
1
+
2
+ import { HttpError } from '@oazapfts/runtime'
3
+ import apis from '../apis.json'
4
+ import { StackspotAPIError } from '../error/StackspotAPIError'
5
+ import { ReactQueryNetworkClient } from '../network/ReactQueryNetworkClient'
6
+
7
+ import { defaults, deleteModelResourcesV1LlmResourcesResourceIdDelete, getModelV1LlmModelsModelIdGet, listModelsV1LlmModelsGet, saveOrUpdateModelResourcesV1LlmModelsModelIdResourcesPut, updateModelV1LlmModelsModelIdPatch } from '../api/genAiInference'
8
+ import { DefaultAPIError } from '../error/DefaultAPIError'
9
+ import { inferenceDictionary } from '../error/dictionary/ai-inference'
10
+ import { removeAuthorizationParam } from '../utils/remove-authorization-param'
11
+
12
+ class GenAiInference extends ReactQueryNetworkClient {
13
+ constructor() {
14
+ super(apis.genAiInference.url, defaults)
15
+ }
16
+
17
+ protected buildStackSpotError(error: HttpError): StackspotAPIError {
18
+ return new DefaultAPIError(error.data, error.status, inferenceDictionary, error.headers)
19
+ }
20
+
21
+ /**
22
+ * List all models.
23
+ */
24
+ listModels = this.query(removeAuthorizationParam(listModelsV1LlmModelsGet))
25
+
26
+ /**
27
+ * Gets model by ID.
28
+ */
29
+ getModel = this.query(removeAuthorizationParam(getModelV1LlmModelsModelIdGet))
30
+
31
+ /**
32
+ * Updates model by ID.
33
+ */
34
+ updateModel = this.mutation(removeAuthorizationParam(updateModelV1LlmModelsModelIdPatch))
35
+
36
+ /**
37
+ * Updates resources for a specific model ID.
38
+ */
39
+ updateModelResource = this.mutation(removeAuthorizationParam(saveOrUpdateModelResourcesV1LlmModelsModelIdResourcesPut))
40
+
41
+ /**
42
+ * Deletes a specific model resource by resource ID.
43
+ */
44
+ deleteModelResource = this.mutation(removeAuthorizationParam(deleteModelResourcesV1LlmResourcesResourceIdDelete))
45
+ }
46
+
47
+ export const genAiInferenceClient = new GenAiInference()
@@ -0,0 +1,28 @@
1
+ import { Dictionary } from '@stack-spot/portal-translate'
2
+
3
+ export const inferenceDictionary = {
4
+ en: {
5
+ INFERENCE_2500_AGENT_TOOL_INTEGRATION_ERROR: 'Error integrating with the agent tool.',
6
+ INFERENCE_2501_MODEL_DOES_NOT_EXISTS: 'Model does not exists.',
7
+ INFERENCE_2502_MODEL_RESOURCE_DOES_NOT_EXISTS: 'Model resource does not exists',
8
+ INFERENCE_2503_UNABLE_TO_DELETE_DEFAULT_MODEL_RESOURCE: 'Unable to delete the default model resource.',
9
+ INFERENCE_2504_MODEL_RESOURCE_DEFAULT_UPDATE_NOT_ALLOWED: 'Cannot update default resource {1} to non-default',
10
+ INFERENCE_2505_MODEL_DEFAULT_RESOURCES: 'Cannot deactivate model with default resources',
11
+ INFERENCE_3001_SELF_HOSTED_PROVIDER_WITHOUT_ACCOUNT_ID: 'Self-hosted provider is missing an account ID.',
12
+ INFERENCE_3002_MODEL_NOT_ACTIVE: 'The model is not active.',
13
+ INFERENCE_3003_LLM_PROVIDER_NOT_SUPPORTED: 'The LLM provider is not supported.',
14
+ INFERENCE_3004_INVALID_REQUESTED_MODEL: 'The requested model is invalid.',
15
+ },
16
+ pt: {
17
+ INFERENCE_2500_AGENT_TOOL_INTEGRATION_ERROR: 'Erro ao integrar com a ferramenta do agente.',
18
+ INFERENCE_2501_MODEL_DOES_NOT_EXISTS: 'O modelo especificado não existe.',
19
+ INFERENCE_2502_MODEL_RESOURCE_DOES_NOT_EXISTS: 'O recurso do modelo não existe.',
20
+ INFERENCE_2503_UNABLE_TO_DELETE_DEFAULT_MODEL_RESOURCE: 'Não é possível excluir o recurso padrão do modelo.',
21
+ INFERENCE_2504_MODEL_RESOURCE_DEFAULT_UPDATE_NOT_ALLOWED: 'Não é possível atualizar o recurso padrão {1} para não padrão.',
22
+ INFERENCE_2505_MODEL_DEFAULT_RESOURCES: 'Não é possível desativar o modelo com recursos padrão.',
23
+ INFERENCE_3001_SELF_HOSTED_PROVIDER_WITHOUT_ACCOUNT_ID: 'O provedor auto-hospedado está sem um ID de conta.',
24
+ INFERENCE_3002_MODEL_NOT_ACTIVE: 'O modelo não está ativo.',
25
+ INFERENCE_3003_LLM_PROVIDER_NOT_SUPPORTED: 'O provedor LLM não é suportado.',
26
+ INFERENCE_3004_INVALID_REQUESTED_MODEL: 'O modelo solicitado é inválido.',
27
+ },
28
+ } satisfies Dictionary
package/src/index.ts CHANGED
@@ -12,6 +12,7 @@ export { cloudServicesClient } from './client/cloud-services'
12
12
  export { codeShiftClient } from './client/code-shift'
13
13
  export { contentClient } from './client/content'
14
14
  export { eventBusClient } from './client/event-bus'
15
+ export { genAiInferenceClient } from './client/gen-ai-inference'
15
16
  export { insightsClient } from './client/insights'
16
17
  export { notificationClient } from './client/notification'
17
18
  export { runtimeManagerClient } from './client/runtime-manager'