For complex or multi-topic queries, send separate focused requests:
Copy
Ask AI
// Instead of one massive query, break it down:{ "query": "Competitors of company ABC." }{ "query": "Financial performance of company ABC." }{ "query": "Recent developments of company ABC." }
When latency is absolutely crucial. Delivers near-instant results, prioritizing speed over relevance. Ideal for real-time applications where response time is critical.
fast
When latency is more important than relevance, but you want results in reranked chunks format. Good for applications that need quick, targeted snippets.
basic
A solid balance between relevance and latency. Best for general-purpose searches where you need quality results without the overhead of advanced processing.
advanced
When you need the highest relevance and are willing to trade off latency. Best for queries seeking specific, detailed information.
Use exact_match only when searching for a specific name or phrase that must appear verbatim in the source content. Wrap the phrase in quotes within your query:
Copy
Ask AI
{ "query": "\"John Smith\" CEO Acme Corp", "exact_match": true}
Because this narrows retrieval, it may return fewer results or empty result fields when no exact matches are found. Best suited for:
Due diligence — finding information on a specific person or entity
Data enrichment — retrieving details about a known company or individual
Legal/compliance — locating exact names or phrases in public records