You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/orchestration/src/spec/api.yaml
+7-2Lines changed: 7 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@ openapi: 3.0.0
2
2
3
3
info:
4
4
title: Internal Orchestration Service API
5
-
description: SAP AI Core - Orchestration Service API
5
+
description: Orchestration is an inference service which provides common additional capabilities for business AI scenarios, such as content filtering and data masking. At the core of the service is the LLM module which allows for an easy, harmonized access to the language models of gen AI hub. The service is designed to be modular and extensible, allowing for the addition of new modules in the future. Each module can be configured independently and at runtime, allowing for a high degree of flexibility in the orchestration of AI services.
6
6
contact:
7
7
name: SAP AI Core
8
8
version: 0.0.1
@@ -262,6 +262,7 @@ components:
262
262
$ref: '#/components/schemas/LLMModuleResult'
263
263
264
264
CompletionPostResponseStreaming:
265
+
# TODO: This seems unused in the spec, but used in our endpoints.py, related to Github #778
265
266
type: object
266
267
required:
267
268
- request_id
@@ -338,7 +339,7 @@ components:
338
339
properties:
339
340
chunk_size:
340
341
type: integer
341
-
description: Number of characters per chunk that post-LLM modules operate on.
342
+
description: Minimum number of characters per chunk that post-LLM modules operate on.
342
343
default: 100
343
344
minimum: 1
344
345
maximum: 10000# currently determined by max_size of ACS text records
@@ -624,6 +625,8 @@ components:
624
625
description:
625
626
The name of the response format. Must be a-z, A-Z, 0-9, or contain
626
627
underscores and dashes, with a maximum length of 64.
0 commit comments