wiki_search returns the most relevant Quant Wiki entries for a natural-language query — concepts, formulas, factors, and strategies. Use it as a research entry point: when an agent encounters a finance term mid-task (“what’s the Black-Scholes assumption?”, “explain pairs trading”), call wiki_search first to locate the right wikiItemIds, then wiki_read to load the full markdown body.The hybrid ranker combines vector cosine similarity, lexical (tsvector) matching, and Reciprocal Rank Fusion — so terse jargon and verbose questions both retrieve well.
Two-step lookup is canonical: search returns IDs + summaries cheaply (1 credit, multiple hits), then wiki_read loads only the article(s) the agent actually needs (free). Read top-1 by default; read top-2 only when summaries are ambiguous.
Use maxLength on wiki_read to preview a long article before spending agent context tokens on the full body.
Queries longer than 2,000 characters are rejected with 400. Truncate or summarize long agent context before calling.
topK is capped at 10 for wiki_search. Higher values are silently clamped.