Query the Immersive Commons research RAG corpus
ic_research_askQuery the Immersive Commons research RAG corpus (papers + ingested YouTube). Returns top-k chunks with similarity scores and source links. The query text is forwarded to a server-side RAG proxy (supercommons2 via Tailnet Funnel) and NEVER logged on the IC side — privacy contract. Use this for literature lookups, finding related work, surfacing citations the floor has already ingested. Args: { question: string (<=500 chars), k?: number (1-50, default 10), sources?: ('paper'|'book')[] (default ['paper']) }. Returns the upstream RAG response shape — typically { results: [{ paper_id, title, similarity, snippet, link }, ...] }. Required scope: research:query.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| k | No | Number of chunks to return. Default 10, max 50. | |
| sources | No | Which corpora to query. Default ['paper']. Pass ['paper','book'] to span both. | |
| question | Yes | Natural-language question or keyword query. The proxy embeds and runs top-k retrieval against the corpus. |