Access Vicinae's built-in file search functionality.
This API provides read-only access to the file search system. Use this to find existing files indexed by Vicinae. This does not provide indexing capabilities.
import { FileSearch } from '@vicinae/api';const results = await FileSearch.search('invoice');console.log(`Found ${results.length} files`); Copy
import { FileSearch } from '@vicinae/api';const results = await FileSearch.search('invoice');console.log(`Found ${results.length} files`);
Access Vicinae's built-in file search functionality.
Remarks
This API provides read-only access to the file search system. Use this to find existing files indexed by Vicinae. This does not provide indexing capabilities.
Example