talonic_search
Omnisearch across documents, fields, sources, and schemas in the workspace. Use for conceptual or fuzzy queries.
| Parameter | Type | Description |
|---|---|---|
| query * | string | The search query. Supports fuzzy and conceptual matching. |
| limit | integer | Maximum results per entity type. Default: 5. |
Example
Tool input
{
"query": "indemnification clauses Acme",
"limit": 10
}Tool response
{
"documents": [
{
"id": "doc_4e7b...",
"filename": "acme-services-agreement.pdf",
"type_detected": "Services Agreement",
"score": 0.92
}
],
"fieldMatches": [
{
"fieldName": "indemnification.cap_amount",
"documentId": "doc_4e7b...",
"value": "2x annual fees",
"score": 0.88
}
],
"schemas": [],
"sources": [],
"fields": [
{ "canonicalName": "indemnification.cap_amount", "type": "string" }
]
}