OpenWebSearch
spacefrontiers_search_in_document
Find specific passages inside one Space Frontiers document without reading the whole body. Use when: the document is large (size > ~20K tokens shown in `content_size_tokens`) and you only need the parts relevant to a sub-question, e.g. "what error rates does this paper report?" against a 60-page review. Do not use when: you need the entire document to summarize or quote in full — call `spacefrontiers_fetch_document` instead. Do not call this without first obtaining a real URI via search. If no passage matches the query, the full document is returned in `fallback_full_document` so the caller never has to retry with a second tool call.
Remote spacefrontiers/search
Other tools also called spacefrontiers_search_in_document?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"uri": {
"type": "string",
"description": "Canonical URI of the document. Copy verbatim from a search hit; do NOT guess."
},
"query": {
"type": "string",
"description": "Text query for the passages you want to find inside this document."
}
}
}