@sap-ai-sdk/orchestration 1.5.1-20250110013118.0 → 1.5.1-20250112013117.0
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/README.md +52 -10
- package/dist/client/api/schema/llm-module-config.d.ts +1 -1
- package/dist/client/api/schema/llm-module-config.d.ts.map +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/internal.d.ts +1 -1
- package/dist/internal.d.ts.map +1 -1
- package/dist/internal.js +1 -1
- package/dist/internal.js.map +1 -1
- package/dist/orchestration-types.d.ts +12 -0
- package/dist/orchestration-types.d.ts.map +1 -1
- package/dist/{orchestration-filter-utility.d.ts → orchestration-utils.d.ts} +1 -1
- package/dist/orchestration-utils.d.ts.map +1 -0
- package/dist/{orchestration-filter-utility.js → orchestration-utils.js} +1 -1
- package/dist/orchestration-utils.js.map +1 -0
- package/package.json +3 -3
- package/dist/orchestration-filter-utility.d.ts.map +0 -1
- package/dist/orchestration-filter-utility.js.map +0 -1
package/README.md
CHANGED
|
@@ -64,16 +64,17 @@ Consequently, each orchestration deployment uniquely maps to a resource group wi
|
|
|
64
64
|
## Usage
|
|
65
65
|
|
|
66
66
|
Leverage the orchestration service capabilities by using the orchestration client.
|
|
67
|
-
Configure the LLM module by setting the `model_name`
|
|
67
|
+
Configure the LLM module by setting the `model_name` property.
|
|
68
68
|
Define the optional `model_version` property to choose an available model version.
|
|
69
69
|
By default, the version is set to `latest`.
|
|
70
|
+
Specify the optional `model_params` property to apply specific parameters to the model
|
|
70
71
|
|
|
71
72
|
```ts
|
|
72
73
|
import { OrchestrationClient } from '@sap-ai-sdk/orchestration';
|
|
73
74
|
|
|
74
75
|
const orchestrationClient = new OrchestrationClient({
|
|
75
76
|
llm: {
|
|
76
|
-
model_name: 'gpt-
|
|
77
|
+
model_name: 'gpt-4o',
|
|
77
78
|
model_params: { max_tokens: 50, temperature: 0.1 },
|
|
78
79
|
model_version: 'latest'
|
|
79
80
|
},
|
|
@@ -96,7 +97,7 @@ import { OrchestrationClient } from '@sap-ai-sdk/orchestration';
|
|
|
96
97
|
|
|
97
98
|
const orchestrationClient = new OrchestrationClient({
|
|
98
99
|
llm: {
|
|
99
|
-
model_name: 'gpt-
|
|
100
|
+
model_name: 'gpt-4o',
|
|
100
101
|
model_params: { max_tokens: 50, temperature: 0.1 }
|
|
101
102
|
},
|
|
102
103
|
templating: {
|
|
@@ -165,7 +166,7 @@ import { OrchestrationClient } from '@sap-ai-sdk/orchestration';
|
|
|
165
166
|
|
|
166
167
|
const orchestrationClient = new OrchestrationClient({
|
|
167
168
|
llm: {
|
|
168
|
-
model_name: 'gpt-
|
|
169
|
+
model_name: 'gpt-4o',
|
|
169
170
|
model_params: { max_tokens: 50, temperature: 0.1 }
|
|
170
171
|
},
|
|
171
172
|
templating: {
|
|
@@ -194,6 +195,49 @@ const response = await orchestrationClient.chatCompletion({
|
|
|
194
195
|
const responseContent = response.getContent();
|
|
195
196
|
```
|
|
196
197
|
|
|
198
|
+
#### Image Recognition
|
|
199
|
+
|
|
200
|
+
Many models in the orchestration service have image recognition capabilities, meaning the models can take images and answer questions about them.
|
|
201
|
+
|
|
202
|
+
```ts
|
|
203
|
+
import { OrchestrationClient } from '@sap-ai-sdk/orchestration';
|
|
204
|
+
|
|
205
|
+
const orchestrationClient = new OrchestrationClient({
|
|
206
|
+
llm: {
|
|
207
|
+
model_name: 'gpt-4o'
|
|
208
|
+
},
|
|
209
|
+
templating: {
|
|
210
|
+
template: [
|
|
211
|
+
{
|
|
212
|
+
role: 'user',
|
|
213
|
+
content: [
|
|
214
|
+
{
|
|
215
|
+
type: 'text',
|
|
216
|
+
text: 'What is the content of the image?'
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
type: 'image_url',
|
|
220
|
+
image_url: {
|
|
221
|
+
url: '{{?imageUrl}}'
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
]
|
|
225
|
+
}
|
|
226
|
+
]
|
|
227
|
+
}
|
|
228
|
+
});
|
|
229
|
+
|
|
230
|
+
const response = await orchestrationClient.chatCompletion({
|
|
231
|
+
inputParams: {
|
|
232
|
+
imageUrl: 'IMAGE_URL'
|
|
233
|
+
}
|
|
234
|
+
});
|
|
235
|
+
```
|
|
236
|
+
|
|
237
|
+
`IMAGE_URL` can either be a public URL or a base64 encoded image, e.g., `data:image/jpeg;base64,...`.
|
|
238
|
+
The model can take multiple images.
|
|
239
|
+
It will process each image and use the information from all of them to answer the question.
|
|
240
|
+
|
|
197
241
|
### Content Filtering
|
|
198
242
|
|
|
199
243
|
Use the orchestration client with filtering to restrict content that is passed to and received from a generative AI model.
|
|
@@ -209,7 +253,7 @@ import {
|
|
|
209
253
|
const filter = buildAzureContentFilter({ Hate: 2, Violence: 4 });
|
|
210
254
|
const orchestrationClient = new OrchestrationClient({
|
|
211
255
|
llm: {
|
|
212
|
-
model_name: 'gpt-
|
|
256
|
+
model_name: 'gpt-4o',
|
|
213
257
|
model_params: { max_tokens: 50, temperature: 0.1 }
|
|
214
258
|
},
|
|
215
259
|
templating: {
|
|
@@ -255,8 +299,7 @@ You can anonymize or pseudonomize the prompt using the data masking capabilities
|
|
|
255
299
|
```ts
|
|
256
300
|
const orchestrationClient = new OrchestrationClient({
|
|
257
301
|
llm: {
|
|
258
|
-
model_name: 'gpt-
|
|
259
|
-
model_params: {}
|
|
302
|
+
model_name: 'gpt-4o'
|
|
260
303
|
},
|
|
261
304
|
templating: {
|
|
262
305
|
template: [
|
|
@@ -291,8 +334,7 @@ Grounding enables integrating external, contextually relevant, domain-specific,
|
|
|
291
334
|
```ts
|
|
292
335
|
const orchestrationClient = new OrchestrationClient({
|
|
293
336
|
llm: {
|
|
294
|
-
model_name: 'gpt-35-turbo'
|
|
295
|
-
model_params: {}
|
|
337
|
+
model_name: 'gpt-35-turbo'
|
|
296
338
|
},
|
|
297
339
|
templating: {
|
|
298
340
|
template: [
|
|
@@ -352,7 +394,7 @@ The resource group can be used as an additional parameter to pick the right orch
|
|
|
352
394
|
const orchestrationClient = new OrchestrationClient(
|
|
353
395
|
{
|
|
354
396
|
llm: {
|
|
355
|
-
model_name: 'gpt-
|
|
397
|
+
model_name: 'gpt-4p',
|
|
356
398
|
model_params: { max_tokens: 50, temperature: 0.1 }
|
|
357
399
|
},
|
|
358
400
|
templating: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"llm-module-config.d.ts","sourceRoot":"","sources":["../../../../src/client/api/schema/llm-module-config.ts"],"names":[],"mappings":"AAMA;;GAEG;AACH,MAAM,MAAM,eAAe,GAAG;IAC5B;;;OAGG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;;;;;;;;OASG;IACH,YAAY,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"llm-module-config.d.ts","sourceRoot":"","sources":["../../../../src/client/api/schema/llm-module-config.ts"],"names":[],"mappings":"AAMA;;GAEG;AACH,MAAM,MAAM,eAAe,GAAG;IAC5B;;;OAGG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;;;;;;;;OASG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IACnC;;;OAGG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB,CAAC"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export type { CompletionPostResponse, ChatMessages, TokenUsage, TemplatingModuleConfig, OrchestrationConfig, ModuleResults, ModuleConfigs, MaskingModuleConfig, MaskingProviderConfig, GroundingModuleConfig, DocumentGroundingFilter, GroundingFilterId, GroundingFilterSearchConfiguration, DataRepositoryType, KeyValueListPair, SearchDocumentKeyValueListPair, SearchSelectOptionEnum, LlmModuleResult, LlmChoice, GenericModuleResult, FilteringModuleConfig, InputFilteringConfig, OutputFilteringConfig, FilterConfig, ErrorResponse, DpiEntities, DpiEntityConfig, DpiConfig, CompletionPostRequest, ChatMessage, AzureThreshold, AzureContentSafety, AzureContentSafetyFilterConfig } from './client/api/schema/index.js';
|
|
2
|
-
export type { OrchestrationModuleConfig, LlmModuleConfig, Prompt } from './orchestration-types.js';
|
|
1
|
+
export type { CompletionPostResponse, ChatMessages, TokenUsage, TemplatingModuleConfig, OrchestrationConfig, ModuleResults, ModuleConfigs, MaskingModuleConfig, MaskingProviderConfig, GroundingModuleConfig, DocumentGroundingFilter, GroundingFilterId, GroundingFilterSearchConfiguration, DataRepositoryType, KeyValueListPair, SearchDocumentKeyValueListPair, SearchSelectOptionEnum, LlmModuleResult, LlmChoice, GenericModuleResult, FilteringModuleConfig, InputFilteringConfig, OutputFilteringConfig, FilterConfig, ErrorResponse, DpiEntities, DpiEntityConfig, DpiConfig, CompletionPostRequest, ChatMessage, AzureThreshold, AzureContentSafety, AzureContentSafetyFilterConfig, ImageContent, TextContent, MultiChatMessageContent, MultiChatMessage } from './client/api/schema/index.js';
|
|
2
|
+
export type { OrchestrationModuleConfig, LlmModuleConfig, Prompt, LlmModelParams } from './orchestration-types.js';
|
|
3
3
|
export { OrchestrationClient } from './orchestration-client.js';
|
|
4
|
-
export { buildAzureContentFilter } from './orchestration-
|
|
4
|
+
export { buildAzureContentFilter } from './orchestration-utils.js';
|
|
5
5
|
export { OrchestrationResponse } from './orchestration-response.js';
|
|
6
6
|
export type { ChatModel } from './model-types.js';
|
|
7
7
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,YAAY,EACV,sBAAsB,EACtB,YAAY,EACZ,UAAU,EACV,sBAAsB,EACtB,mBAAmB,EACnB,aAAa,EACb,aAAa,EACb,mBAAmB,EACnB,qBAAqB,EACrB,qBAAqB,EACrB,uBAAuB,EACvB,iBAAiB,EACjB,kCAAkC,EAClC,kBAAkB,EAClB,gBAAgB,EAChB,8BAA8B,EAC9B,sBAAsB,EACtB,eAAe,EACf,SAAS,EACT,mBAAmB,EACnB,qBAAqB,EACrB,oBAAoB,EACpB,qBAAqB,EACrB,YAAY,EACZ,aAAa,EACb,WAAW,EACX,eAAe,EACf,SAAS,EACT,qBAAqB,EACrB,WAAW,EACX,cAAc,EACd,kBAAkB,EAClB,8BAA8B,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,YAAY,EACV,sBAAsB,EACtB,YAAY,EACZ,UAAU,EACV,sBAAsB,EACtB,mBAAmB,EACnB,aAAa,EACb,aAAa,EACb,mBAAmB,EACnB,qBAAqB,EACrB,qBAAqB,EACrB,uBAAuB,EACvB,iBAAiB,EACjB,kCAAkC,EAClC,kBAAkB,EAClB,gBAAgB,EAChB,8BAA8B,EAC9B,sBAAsB,EACtB,eAAe,EACf,SAAS,EACT,mBAAmB,EACnB,qBAAqB,EACrB,oBAAoB,EACpB,qBAAqB,EACrB,YAAY,EACZ,aAAa,EACb,WAAW,EACX,eAAe,EACf,SAAS,EACT,qBAAqB,EACrB,WAAW,EACX,cAAc,EACd,kBAAkB,EAClB,8BAA8B,EAC9B,YAAY,EACZ,WAAW,EACX,uBAAuB,EACvB,gBAAgB,EACjB,MAAM,8BAA8B,CAAC;AAEtC,YAAY,EACV,yBAAyB,EACzB,eAAe,EACf,MAAM,EACN,cAAc,EACf,MAAM,0BAA0B,CAAC;AAElC,OAAO,EAAE,mBAAmB,EAAE,MAAM,2BAA2B,CAAC;AAEhE,OAAO,EAAE,uBAAuB,EAAE,MAAM,0BAA0B,CAAC;AAEnE,OAAO,EAAE,qBAAqB,EAAE,MAAM,6BAA6B,CAAC;AAEpE,YAAY,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export { OrchestrationClient } from './orchestration-client.js';
|
|
2
|
-
export { buildAzureContentFilter } from './orchestration-
|
|
2
|
+
export { buildAzureContentFilter } from './orchestration-utils.js';
|
|
3
3
|
export { OrchestrationResponse } from './orchestration-response.js';
|
|
4
4
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AA+CA,OAAO,EAAE,mBAAmB,EAAE,MAAM,2BAA2B,CAAC;AAEhE,OAAO,EAAE,uBAAuB,EAAE,MAAM,0BAA0B,CAAC;AAEnE,OAAO,EAAE,qBAAqB,EAAE,MAAM,6BAA6B,CAAC"}
|
package/dist/internal.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export * from './orchestration-client.js';
|
|
2
|
-
export * from './orchestration-
|
|
2
|
+
export * from './orchestration-utils.js';
|
|
3
3
|
export * from './orchestration-types.js';
|
|
4
4
|
export * from './orchestration-response.js';
|
|
5
5
|
//# sourceMappingURL=internal.d.ts.map
|
package/dist/internal.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"internal.d.ts","sourceRoot":"","sources":["../src/internal.ts"],"names":[],"mappings":"AAAA,cAAc,2BAA2B,CAAC;AAC1C,cAAc,
|
|
1
|
+
{"version":3,"file":"internal.d.ts","sourceRoot":"","sources":["../src/internal.ts"],"names":[],"mappings":"AAAA,cAAc,2BAA2B,CAAC;AAC1C,cAAc,0BAA0B,CAAC;AACzC,cAAc,0BAA0B,CAAC;AACzC,cAAc,6BAA6B,CAAC"}
|
package/dist/internal.js
CHANGED
package/dist/internal.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"internal.js","sourceRoot":"","sources":["../src/internal.ts"],"names":[],"mappings":"AAAA,cAAc,2BAA2B,CAAC;AAC1C,cAAc,
|
|
1
|
+
{"version":3,"file":"internal.js","sourceRoot":"","sources":["../src/internal.ts"],"names":[],"mappings":"AAAA,cAAc,2BAA2B,CAAC;AAC1C,cAAc,0BAA0B,CAAC;AACzC,cAAc,0BAA0B,CAAC;AACzC,cAAc,6BAA6B,CAAC"}
|
|
@@ -19,7 +19,19 @@ export interface Prompt {
|
|
|
19
19
|
export type LlmModuleConfig = OriginalLlmModuleConfig & {
|
|
20
20
|
/** */
|
|
21
21
|
model_name: ChatModel;
|
|
22
|
+
model_params?: LlmModelParams;
|
|
22
23
|
};
|
|
24
|
+
/**
|
|
25
|
+
* Model Parameters for LLM module configuration.
|
|
26
|
+
*/
|
|
27
|
+
export type LlmModelParams = {
|
|
28
|
+
max_tokens?: number;
|
|
29
|
+
temperature?: number;
|
|
30
|
+
frequency_penalty?: number;
|
|
31
|
+
presence_penalty?: number;
|
|
32
|
+
top_p?: number;
|
|
33
|
+
n?: number;
|
|
34
|
+
} & Record<string, any>;
|
|
23
35
|
/**
|
|
24
36
|
* Orchestration module configuration.
|
|
25
37
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"orchestration-types.d.ts","sourceRoot":"","sources":["../src/orchestration-types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,KAAK,EACV,YAAY,EACZ,qBAAqB,EACrB,qBAAqB,EACrB,mBAAmB,EACnB,eAAe,IAAI,uBAAuB,EAC1C,sBAAsB,EACvB,MAAM,8BAA8B,CAAC;AAEtC;;GAEG;AACH,MAAM,WAAW,MAAM;IACrB;;OAEG;IACH,eAAe,CAAC,EAAE,YAAY,CAAC;IAE/B;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CACtC;AAED;;GAEG;AACH,MAAM,MAAM,eAAe,GAAG,uBAAuB,GAAG;IACtD,MAAM;IACN,UAAU,EAAE,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"orchestration-types.d.ts","sourceRoot":"","sources":["../src/orchestration-types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,KAAK,EACV,YAAY,EACZ,qBAAqB,EACrB,qBAAqB,EACrB,mBAAmB,EACnB,eAAe,IAAI,uBAAuB,EAC1C,sBAAsB,EACvB,MAAM,8BAA8B,CAAC;AAEtC;;GAEG;AACH,MAAM,WAAW,MAAM;IACrB;;OAEG;IACH,eAAe,CAAC,EAAE,YAAY,CAAC;IAE/B;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CACtC;AAED;;GAEG;AACH,MAAM,MAAM,eAAe,GAAG,uBAAuB,GAAG;IACtD,MAAM;IACN,UAAU,EAAE,SAAS,CAAC;IACtB,YAAY,CAAC,EAAE,cAAc,CAAC;CAC/B,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,cAAc,GAAG;IAC3B,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,CAAC,CAAC,EAAE,MAAM,CAAC;CACZ,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;AAExB;;GAEG;AACH,MAAM,WAAW,yBAAyB;IACxC;;OAEG;IACH,UAAU,EAAE,sBAAsB,CAAC;IACnC;;OAEG;IACH,GAAG,EAAE,eAAe,CAAC;IACrB;;OAEG;IACH,SAAS,CAAC,EAAE,qBAAqB,CAAC;IAClC;;OAEG;IACH,OAAO,CAAC,EAAE,mBAAmB,CAAC;IAC9B;;OAEG;IACH,SAAS,CAAC,EAAE,qBAAqB,CAAC;CACnC"}
|
|
@@ -5,4 +5,4 @@ import type { AzureContentSafety, InputFilteringConfig, OutputFilteringConfig }
|
|
|
5
5
|
* @returns An object with the Azure filtering configuration.
|
|
6
6
|
*/
|
|
7
7
|
export declare function buildAzureContentFilter(filter?: AzureContentSafety): InputFilteringConfig | OutputFilteringConfig;
|
|
8
|
-
//# sourceMappingURL=orchestration-
|
|
8
|
+
//# sourceMappingURL=orchestration-utils.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"orchestration-utils.d.ts","sourceRoot":"","sources":["../src/orchestration-utils.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,kBAAkB,EAClB,oBAAoB,EACpB,qBAAqB,EACtB,MAAM,8BAA8B,CAAC;AAEtC;;;;GAIG;AACH,wBAAgB,uBAAuB,CACrC,MAAM,CAAC,EAAE,kBAAkB,GAC1B,oBAAoB,GAAG,qBAAqB,CAY9C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"orchestration-utils.js","sourceRoot":"","sources":["../src/orchestration-utils.ts"],"names":[],"mappings":"AAMA;;;;GAIG;AACH,MAAM,UAAU,uBAAuB,CACrC,MAA2B;IAE3B,IAAI,MAAM,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,MAAM,EAAE,CAAC;QAC1C,MAAM,IAAI,KAAK,CAAC,2CAA2C,CAAC,CAAC;IAC/D,CAAC;IACD,OAAO;QACL,OAAO,EAAE;YACP;gBACE,IAAI,EAAE,sBAAsB;gBAC5B,GAAG,CAAC,MAAM,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;aAClC;SACF;KACF,CAAC;AACJ,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sap-ai-sdk/orchestration",
|
|
3
|
-
"version": "1.5.1-
|
|
3
|
+
"version": "1.5.1-20250112013117.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"keywords": [
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@sap-cloud-sdk/http-client": "^3.25.0",
|
|
24
24
|
"@sap-cloud-sdk/connectivity": "^3.25.0",
|
|
25
|
-
"@sap-ai-sdk/core": "^1.5.1-
|
|
26
|
-
"@sap-ai-sdk/ai-api": "^1.5.1-
|
|
25
|
+
"@sap-ai-sdk/core": "^1.5.1-20250112013117.0",
|
|
26
|
+
"@sap-ai-sdk/ai-api": "^1.5.1-20250112013117.0"
|
|
27
27
|
},
|
|
28
28
|
"scripts": {
|
|
29
29
|
"compile": "tsc",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"orchestration-filter-utility.d.ts","sourceRoot":"","sources":["../src/orchestration-filter-utility.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,kBAAkB,EAClB,oBAAoB,EACpB,qBAAqB,EACtB,MAAM,8BAA8B,CAAC;AAEtC;;;;GAIG;AACH,wBAAgB,uBAAuB,CACrC,MAAM,CAAC,EAAE,kBAAkB,GAC1B,oBAAoB,GAAG,qBAAqB,CAY9C"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"orchestration-filter-utility.js","sourceRoot":"","sources":["../src/orchestration-filter-utility.ts"],"names":[],"mappings":"AAMA;;;;GAIG;AACH,MAAM,UAAU,uBAAuB,CACrC,MAA2B;IAE3B,IAAI,MAAM,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,MAAM,EAAE,CAAC;QAC1C,MAAM,IAAI,KAAK,CAAC,2CAA2C,CAAC,CAAC;IAC/D,CAAC;IACD,OAAO;QACL,OAAO,EAAE;YACP;gBACE,IAAI,EAAE,sBAAsB;gBAC5B,GAAG,CAAC,MAAM,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;aAClC;SACF;KACF,CAAC;AACJ,CAAC"}
|