@deskcreate/agentcraft
    Preparing search index...

    Interface AgentCreateConfig

    interface AgentCreateConfig {
        accessKeyId?: string;
        apiKey?: string;
        apiVersion?: string;
        baseUrl?: string;
        cache?: AgentCacheController;
        deployment?: string;
        endpoint?: string;
        frequencyPenalty?: number;
        location?: string;
        logger?: Logger;
        maxTokens?: number;
        model: string & {} | ProviderModel;
        name?: string;
        organizationId?: string;
        presencePenalty?: number;
        project?: string;
        region?: string;
        responseFormat?: ResponseFormat;
        retry?: RetryConfig;
        secretAccessKey?: string;
        skillActivation?: "auto" | "always" | "directive-only";
        stopSequences?: string[];
        system?: string;
        temperature?: number;
        timeout?: number;
        toolPolicy?: ToolPolicy;
        tools?: ToolDefinition[];
        toolSelection?: "auto" | "all";
        topP?: number;
    }
    Index

    Properties

    accessKeyId?: string
    apiKey?: string
    apiVersion?: string
    baseUrl?: string
    deployment?: string
    endpoint?: string
    frequencyPenalty?: number
    location?: string
    logger?: Logger
    maxTokens?: number
    model: string & {} | ProviderModel
    name?: string
    organizationId?: string
    presencePenalty?: number
    project?: string
    region?: string
    responseFormat?: ResponseFormat
    retry?: RetryConfig
    secretAccessKey?: string
    skillActivation?: "auto" | "always" | "directive-only"
    stopSequences?: string[]
    system?: string
    temperature?: number
    timeout?: number
    toolPolicy?: ToolPolicy
    tools?: ToolDefinition[]
    toolSelection?: "auto" | "all"
    topP?: number