HoneyHive TypeScript API SDK
    Preparing search index...

    Type Alias CreateConfigurationRequest

    type CreateConfigurationRequest = {
        env?: ("dev" | "staging" | "prod")[];
        name: string;
        parameters: {
            call_type: "chat" | "completion";
            forceFunction?: { [key: string]: unknown };
            functionCallParams?: "none" | "auto" | "force";
            hyperparameters?: { [key: string]: unknown };
            model: string;
            responseFormat?: { type: "text" | "json_object" };
            selectedFunctions?: {
                description?: string;
                id: string;
                name: string;
                parameters?: { [key: string]: unknown };
            }[];
            template?: { content: string; role: string }[]
            | string;
        };
        provider: string;
        tags?: string[];
        type?: "LLM"
        | "pipeline";
        user_properties?: { [key: string]: unknown } | null;
    }
    Index

    Properties

    env?: ("dev" | "staging" | "prod")[]
    name: string
    parameters: {
        call_type: "chat" | "completion";
        forceFunction?: { [key: string]: unknown };
        functionCallParams?: "none" | "auto" | "force";
        hyperparameters?: { [key: string]: unknown };
        model: string;
        responseFormat?: { type: "text" | "json_object" };
        selectedFunctions?: {
            description?: string;
            id: string;
            name: string;
            parameters?: { [key: string]: unknown };
        }[];
        template?: { content: string; role: string }[]
        | string;
    }
    provider: string
    tags?: string[]
    type?: "LLM" | "pipeline"
    LLM
    @enum {string}
    user_properties?: { [key: string]: unknown } | null