UNPKG

@copilotkit/react-core

Version:

<div align="center"> <a href="https://copilotkit.ai" target="_blank"> <img src="https://github.com/copilotkit/copilotkit/raw/main/assets/banner.png" alt="CopilotKit Logo"> </a>

13 lines (10 loc) 516 B
import { DocumentPointer } from '../types/document-pointer.js'; /** * Makes a document readable by Copilot. * @param document The document to make readable. * @param categories The categories to associate with the document. * @param dependencies The dependencies to use for the effect. * @returns The id of the document. */ declare function useMakeCopilotDocumentReadable(document: DocumentPointer, categories?: string[], dependencies?: any[]): string | undefined; export { useMakeCopilotDocumentReadable };