@sap-ai-sdk/orchestration
Version:
SAP Cloud SDK for AI is the official Software Development Kit (SDK) for **SAP AI Core**, **SAP Generative AI Hub**, and **Orchestration Service**.
28 lines • 793 B
TypeScript
/**
* Options for streaming. Will be ignored if enabled is false.
*/
export type GlobalStreamOptions = {
/**
* If true, the response will be streamed back to the client
*/
enabled?: boolean;
/**
* Minimum number of characters per chunk that post-LLM modules operate on.
* Default: 100.
* Maximum: 10000.
* Minimum: 1.
*/
chunk_size?: number;
/**
* List of delimiters to split the input text into chunks.Please note, this is a required parameter when `input_translation_module_config` or `output_translation_module_config` are configured.
* @example [
* "\n",
* ".",
* "?",
* "!"
* ]
* Min Items: 1.
*/
delimiters?: string[];
};
//# sourceMappingURL=global-stream-options.d.ts.map