Skip to content

Chunk Search

Chunk Search provides search capabilities that serve as a complete drop-in replacement for traditional RAG pipelines. This system enables AI agents to leverage private data stored in Smart Buckets with zero additional configuration.

Each input query is processed by our AI agent to determine the best way to search the data. The system will then return the most relevant results from the data ranked by relevance on the input query.

import Raindrop from '@liquidmetal-ai/lm-raindrop';
const client = new Raindrop({
apiKey: process.env['RAINDROP_API_KEY'], // This is the default and can be omitted
});
async function main() {
const chunkSearch = await client.chunkSearch.create({ input: 'input', request_id: 'request_id' });
console.log(chunkSearch.results);
}
main();