Theia API Documentation v1.66.0
    Preparing search index...

    Interface LanguageModelChatCapabilities

    Various features that the LanguageModelChatInformation supports such as tool calling or image input.

    interface LanguageModelChatCapabilities {
        imageInput?: boolean;
        toolCalling?: number | boolean;
    }
    Index

    Properties

    imageInput?: boolean

    Whether image input is supported by the model. Common supported images are jpg and png, but each model will vary in supported mimetypes.

    toolCalling?: number | boolean

    Whether tool calling is supported by the model. If a number is provided, that is the maximum number of tools that can be provided in a request to the model.