SAP AI SDK for JavaScript - v2.15.0
    Preparing search index...

    Type Alias LlmModelDetails

    LlmModelDetails: Omit<OriginalLLMModelDetails, "name" | "params"> & {
        name: ChatModel;
        params?: LlmModelParams;
    }

    LLM model details.

    Type Declaration

    • name: ChatModel

      The name of the model to use. In addition to the listed ChatModel values, any string is accepted, allowing use of models not yet included in the SDK's type definitions:.

      model: { name: 'my-custom-model-name' }
      
    • Optionalparams?: LlmModelParams