UNPKG

@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**.

30 lines 678 B
/** * Representation of the 'LlmModuleConfig' schema. */ export type LlmModuleConfig = { /** * Model name as in LLM Access configuration * @example "gpt-4" */ model_name: string; /** * Model parameters * @example { * "max_tokens": 300, * "temperature": 0.1, * "frequency_penalty": 0, * "presence_penalty": 0, * "n": 2, * "stream_options": { * "include_usage": true * } * } */ model_params?: Record<string, any>; /** * Version of the model to use * Default: "latest". */ model_version?: string; }; //# sourceMappingURL=llm-module-config.d.ts.map