generated from SAP/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Update to Orchestration 0.36.1 (#333)
* feat: Update to Orchestration 0.36.1 * update spec, remove help.sap.com
- Loading branch information
Showing
15 changed files
with
385 additions
and
66 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 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 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 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/template-ref-by-id.ts
This file contains 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) 2024 SAP SE or an SAP affiliate company. All rights reserved. | ||
* | ||
* This is a generated file powered by the SAP Cloud SDK for JavaScript. | ||
*/ | ||
|
||
/** | ||
* Representation of the 'TemplateRefByID' schema. | ||
*/ | ||
export type TemplateRefByID = { | ||
/** | ||
* ID of the template in prompt registry | ||
* @example "template_id" | ||
*/ | ||
id: string; | ||
} & Record<string, any>; |
26 changes: 26 additions & 0 deletions
26
packages/orchestration/src/client/api/schema/template-ref-by-scenario-name-version.ts
This file contains 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,26 @@ | ||
/* | ||
* Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. | ||
* | ||
* This is a generated file powered by the SAP Cloud SDK for JavaScript. | ||
*/ | ||
|
||
/** | ||
* Representation of the 'TemplateRefByScenarioNameVersion' schema. | ||
*/ | ||
export type TemplateRefByScenarioNameVersion = { | ||
/** | ||
* Scenario name | ||
* @example "some-scenario" | ||
*/ | ||
scenario: string; | ||
/** | ||
* Name of the template | ||
* @example "some-template-name" | ||
*/ | ||
name: string; | ||
/** | ||
* Version of the template | ||
* @example "some version, can be `latest`" | ||
*/ | ||
version: string; | ||
} & Record<string, any>; |
16 changes: 16 additions & 0 deletions
16
packages/orchestration/src/client/api/schema/template-ref.ts
This file contains 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) 2024 SAP SE or an SAP affiliate company. All rights reserved. | ||
* | ||
* This is a generated file powered by the SAP Cloud SDK for JavaScript. | ||
*/ | ||
import type { TemplateRefByID } from './template-ref-by-id.js'; | ||
import type { TemplateRefByScenarioNameVersion } from './template-ref-by-scenario-name-version.js'; | ||
/** | ||
* Representation of the 'TemplateRef' schema. | ||
*/ | ||
export type TemplateRef = { | ||
/** | ||
* Reference to a template in the prompt registry by ID or by scenario, name and version | ||
*/ | ||
template_ref: TemplateRefByID | TemplateRefByScenarioNameVersion; | ||
} & Record<string, any>; |
This file contains 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
11 changes: 11 additions & 0 deletions
11
packages/orchestration/src/client/api/schema/templating-chat-message.ts
This file contains 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,11 @@ | ||
/* | ||
* Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. | ||
* | ||
* This is a generated file powered by the SAP Cloud SDK for JavaScript. | ||
*/ | ||
import type { ChatMessage } from './chat-message.js'; | ||
/** | ||
* Representation of the 'TemplatingChatMessage' schema. | ||
* Min Items: 1. | ||
*/ | ||
export type TemplatingChatMessage = ChatMessage[]; |
This file contains 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 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.