Skip to main content
Remote knowledge component for knowledge base services. Provides access to external knowledge storage and retrieval services, handling document parsing, chunking, and embedding for semantic search. Example
const knowledgeComponent = new RemoteKnowledgeComponent({
  maxCharsPerChunk: 1500,
  maxChunksPerDocument: 20
});

Constructor

new RemoteKnowledgeComponent(
    props: RemoteKnowledgeComponentProps,
): RemoteKnowledgeComponent
Creates a new RemoteKnowledgeComponent instance.

Parameters

props
RemoteKnowledgeComponentProps
Configuration for the remote knowledge component

Returns

A new RemoteKnowledgeComponent instance

Overrides

AbstractComponent.constructor