Theia API Documentation v1.65.0
    Preparing search index...

    The ChatAgentService provides access to the available chat agents.

    interface ChatAgentService {
        getAgent(id: string): undefined | ChatAgent;
        getAgents(): ChatAgent[];
        getAllAgents(): ChatAgent[];
        registerChatAgent(agent: ChatAgent): void;
        unregisterChatAgent(agentId: string): void;
    }

    Implemented by

    Index

    Methods