Skip to content

Document Query

Enables natural conversational interactions with documents stored in Smart Buckets. This endpoint allows users to ask questions, request summaries, and explore document content through an intuitive conversational interface. The system understands context and can handle complex queries about document contents.

The query system maintains conversation context throught the request_id, enabling follow-up questions and deep exploration of document content. It works across all supported file types and automatically handles multi-page documents, making complex file interaction as simple as having a conversation.

The system will:

  • Maintain conversation history for context when using the same request_id
  • Process questions against file content
  • Generate contextual, relevant responses

Document query is supported for all file types, including PDFs, images, and audio files.

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 documentQuery = await client.documentQuery.create({
bucket: 'bucket',
input: 'input',
object_id: 'object_id',
request_id: 'request_id',
});
console.log(documentQuery.answer);
}
main();