Type Alias AgentJobSpecCreateConfig

AgentJobSpecCreateConfig: {
    agentType: AgentType;
    companyDescription: string;
    companyName: string;
    companyWebsite?: string;
    groundingContext?: string;
    maxNumOfTopics?: number;
    promptTemplateName?: string;
    role: string;
}

The parameters used to generate an agent spec.

Type declaration

  • agentType: AgentType

    Internal type is copilots; used by customers' employees. Customer type is agents; used by customers' customers.

  • companyDescription: string
  • companyName: string
  • OptionalcompanyWebsite?: string
  • OptionalgroundingContext?: string

    Context info to be used in customized prompt template

  • OptionalmaxNumOfTopics?: number

    The maximum number of topics to create in the spec. Default is 10.

  • OptionalpromptTemplateName?: string

    Developer name of the prompt template.

  • role: string