Databricks SDK for JavaScript
    Preparing search index...
    interface CreateCustomLlmRequest {
        agentArtifactPath?: string;
        datasets?: Dataset[];
        guidelines?: string[];
        instructions?: string;
        name?: string;
    }
    Index

    Properties

    agentArtifactPath?: string

    This will soon be deprecated!! Optional: UC path for agent artifacts. If you are using a dataset that you only have read permissions, please provide a destination path where you have write permissions. Please provide this in catalog.schema format.

    datasets?: Dataset[]

    Datasets used for training and evaluating the model, not for inference. Currently, only 1 dataset is accepted.

    guidelines?: string[]

    Guidelines for the custom LLM to adhere to

    instructions?: string

    Instructions for the custom LLM to follow

    name?: string

    Name of the custom LLM. Only alphanumeric characters and dashes allowed.