-
Notifications
You must be signed in to change notification settings - Fork 43
feat: Update orchestration specification #1646
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
github-actions
wants to merge
18
commits into
main
Choose a base branch
from
spec-update/orchestration/rel-0.115.19
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
61ef7cb
Update orchestration based on rel-0.115.19
bot-sdk-js 871b695
Merge branch 'main' into spec-update/orchestration/rel-0.115.19
KavithaSiva 1cca7b3
Merge branch 'main' into spec-update/orchestration/rel-0.115.19
KavithaSiva 62b3f12
chore: Add changeset and fix type
davidkna-sap c2d9f95
Merge branch 'main' into spec-update/orchestration/rel-0.115.19
davidkna-sap 5db85ac
Merge remote-tracking branch 'origin/main' into spec-update/orchestra…
bot-sdk-js e0ad2e2
Update .changeset/nice-emus-train.md
davidkna-sap 702e8d9
Add orchestrationWithObjectStoreSecretName sample for `'AI-Object-Sto…
davidkna-sap d877bf0
chore: Replace sample-code with jsdoc
davidkna-sap 69f5357
fix: Changes from lint
7862cda
Merge remote-tracking branch 'origin/main' into spec-update/orchestra…
bot-sdk-js 0d91cb2
Merge branch 'main' into spec-update/orchestration/rel-0.115.19
KavithaSiva d05a64d
fix: Changes from lint
32b65f2
Merge branch 'main' into spec-update/orchestration/rel-0.115.19
KavithaSiva f88e051
Apply suggestions from code review
davidkna-sap 0c47403
fix: Changes from lint
sap-ai-sdk-bot[bot] 55f01c6
Merge branch 'main' into spec-update/orchestration/rel-0.115.19
KavithaSiva 4ed186f
chore: Add unit test
davidkna-sap File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| '@sap-ai-sdk/orchestration': minor | ||
| --- | ||
|
|
||
| [feat] Update orchestration specification to 0.115.19 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
packages/orchestration/src/client/api/schema/embedding-base-64-string.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| /* | ||
| * Copyright (c) 2026 SAP SE or an SAP affiliate company. All rights reserved. | ||
| * | ||
| * This is a generated file powered by the SAP Cloud SDK for JavaScript. | ||
| */ | ||
|
|
||
| /** | ||
| * A single base64 string representing the embedding. | ||
| */ | ||
| export type EmbeddingBase64String = string; |
10 changes: 10 additions & 0 deletions
10
packages/orchestration/src/client/api/schema/embedding-float-array.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| /* | ||
| * Copyright (c) 2026 SAP SE or an SAP affiliate company. All rights reserved. | ||
| * | ||
| * This is a generated file powered by the SAP Cloud SDK for JavaScript. | ||
| */ | ||
|
|
||
| /** | ||
| * An array of floating point numbers representing the embedding. | ||
| */ | ||
| export type EmbeddingFloatArray = number[]; |
35 changes: 35 additions & 0 deletions
35
packages/orchestration/src/client/api/schema/embedding-multi-format.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,35 @@ | ||
| /* | ||
| * Copyright (c) 2026 SAP SE or an SAP affiliate company. All rights reserved. | ||
| * | ||
| * This is a generated file powered by the SAP Cloud SDK for JavaScript. | ||
| */ | ||
|
|
||
| /** | ||
| * A dictionary mapping encoding format names to their embeddings. Used when multiple encoding formats are requested (Cohere-specific). | ||
| */ | ||
| export type EmbeddingMultiFormat = { | ||
| /** | ||
| * Float encoding format - array of floating point numbers | ||
| */ | ||
| float?: number[]; | ||
| /** | ||
| * Int8 encoding format - array of 8-bit integers | ||
| */ | ||
| int8?: number[]; | ||
| /** | ||
| * Uint8 encoding format - array of unsigned 8-bit integers | ||
| */ | ||
| uint8?: number[]; | ||
| /** | ||
| * Base64 encoding format - base64 encoded string | ||
| */ | ||
| base64?: string; | ||
| /** | ||
| * Binary encoding format - array of integers | ||
| */ | ||
| binary?: number[]; | ||
| /** | ||
| * Ubinary encoding format - array of unsigned integers | ||
| */ | ||
| ubinary?: number[]; | ||
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
packages/orchestration/src/client/api/schema/encoding-format.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| /* | ||
| * Copyright (c) 2026 SAP SE or an SAP affiliate company. All rights reserved. | ||
| * | ||
| * This is a generated file powered by the SAP Cloud SDK for JavaScript. | ||
| */ | ||
|
|
||
| /** | ||
| * Encoding format for embeddings. | ||
| */ | ||
| export type EncodingFormat = | ||
| | 'float' | ||
| | 'base64' | ||
| | 'binary' | ||
| | 'int8' | ||
| | 'uint8' | ||
| | 'ubinary'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.