HoneyHive TypeScript API SDK
    Preparing search index...

    Type Alias GetConfigurationsResponse

    type GetConfigurationsResponse = {
        configurations: {
            created_at: string;
            env: ("dev" | "staging" | "prod")[];
            id: string;
            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";
            updated_at?: string | null;
            user_properties?: { [key: string]: unknown } | null;
        }[];
    }
    Index

    Properties

    Properties

    configurations: {
        created_at: string;
        env: ("dev" | "staging" | "prod")[];
        id: string;
        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";
        updated_at?: string | null;
        user_properties?: { [key: string]: unknown } | null;
    }[]

    Type Declaration

    • created_at: string

      Format: date-time

    • env: ("dev" | "staging" | "prod")[]
    • id: string
    • 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"
    • Optionalupdated_at?: string | null

      Format: date-time

    • Optionaluser_properties?: { [key: string]: unknown } | null