@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**.
31 lines • 711 B
TypeScript
/**
* Representation of the 'LlmModuleConfig' schema.
*/
export type LlmModuleConfig = {
/**
* Model name as in LLM Access configuration
* @example "gpt-4o-mini"
*/
model_name: string;
/**
* Model parameters
* @example {
* "max_tokens": 300,
* "temperature": 0.1,
* "frequency_penalty": 0,
* "presence_penalty": 0,
* "n": 2,
* "logprobs": true,
* "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