A chat agent is a specialized agent with a common interface for its invocation.

interface ChatAgent {
    iconClass?: string;
    locations: ChatAgentLocation[];
    invoke(request, chatAgentService?): Promise<void>;
}

Hierarchy

  • Agent
    • ChatAgent

Implemented by

Properties

Methods

Properties

iconClass?: string
locations: ChatAgentLocation[]

Methods