Chunk Search
POST /v1/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.
Authorizations
Request Body required
object
Natural language query or question. Can include complex criteria and relationships
Client-provided search session identifier. We recommend using a UUID or ULID for this value.
Optional list of specific bucket IDs to search in. If not provided, searches the latest version of all accessible buckets
Responses
200
Semantically relevant results with metadata and relevance scoring
object
Semantically relevant results with metadata and relevance scoring
object
Unique identifier for this text segment
chunk_123abc
The actual content of the result
This is a sample text chunk
Source document information in JSON format
{"bucket": "my-bucket", "path": "doc.pdf", "type": "application/pdf"}
Parent document identifier
doc_456def
Relevance score (0.0 to 1.0)
0.95
Content MIME type
text/plain
[ { "chunk_signature": "chunk_123abc", "text": "This is a sample text chunk", "source": "{\"bucket\": \"my-bucket\", \"path\": \"doc.pdf\"}", "payload_signature": "doc_456def", "score": 0.95, "type": "text/plain" }]
400
Invalid request parameters
object
Error code
INVALID_ARGUMENT
Error message
Missing required parameter: input