SmythOS SDK
    Preparing search index...

    Type Alias TAgentSettings

    Configuration settings for creating an Agent instance.

    const settings: TAgentSettings = {
    name: "Customer Support Agent",
    model: "gpt-4",
    behavior: "You are a helpful customer support representative."
    };
    type TAgentSettings = {
        behavior?: string;
        mode?: TAgentMode | TAgentMode[];
        model: string | TLLMConnectorParams;
        name: string;
        teamId?: string;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any
    Index

    Properties

    behavior?: string

    Optional behavior description that guides the agent's responses

    The mode of the agent

    model: string | TLLMConnectorParams

    The default model to use for agent responses

    name: string

    The display name for the agent

    teamId?: string

    Explicitly specifies the agent teamId