Member Junction
    Preparing search index...

    Knowledge Agent provides Knowledge Hub capabilities as a sub-agent.

    • search_knowledge — Execute a unified search across vector + full-text indexes
    • create_entity_document — Create a new entity document template for vectorization
    • run_vectorization — Trigger vectorization for an entity
    • run_duplicate_detection — Run duplicate detection on an entity
    • navigate_to_tab — Switch the Knowledge Hub to a specific tab
    • open_suggest_panel — Open the document suggestion panel
    • apply_search_filter — Apply filters to the search UI
    Index

    Constructors

    Properties

    Tools: KnowledgeAgentTool[] = ...

    All tools this agent can invoke

    Methods

    • Execute a server-side tool by name.

      Parameters

      Returns Promise<
          {
              Data?: Record<string, unknown>;
              ErrorMessage?: string;
              Success: boolean;
          },
      >

    • Get the tool definitions formatted for LLM function calling.

      Returns { description: string; name: string; parameters: Record<string, unknown> }[]