Search Vector Store
Search_Vector_Store runs semantic chunk retrieval against an existing GovTribe vector store and returns a plain-text answer payload, not a paginated dataset envelope.
Input Contract
govtribe_vector_store_id: GovTribe vector store identifier to search.type:stringrequired:yesdefault:n/a
query: Natural-language search prompt used to retrieve relevant chunks.type:stringrequired:yesdefault:n/a
max_num_results: Upper bound on returned matches; keep this as small as possible for the user question.type:number(integer range)required:nodefault:10(schema default; handler fallback is3when omitted)shape: integer in[1, 50]
rewrite_query: Optional rewrite toggle that lets the search layer reformulate the prompt for better semantic recall.type:booleanrequired:nodefault:n/a
Use concise, intent-rich query strings and a tight max_num_results to reduce noise. Keep rewrite_query off when the caller already supplies a carefully phrased requirement string, and enable it when the user asks broad conceptual questions with varied wording.
Output Contract
Top-level keys:
text_response: single formatted text block returned by the tool call.result_summary: first line reports eitherFound N result(s) for: "<query>"orNo results found for: "<query>".additional_results_note: optional trailing note when more matches are available beyond returned entries.
Row keys:
rankfilenamerelevance_percentattributescontent_chunks
Relationship retrieval map:
attributes.govtribe_idwith file-model attributes for workspace filestool:Search_User_Filesfilter:user_file_ids
attributes.govtribe_idwith file-model attributes for government filestool:Search_Government_Filesfilter:government_file_ids
filenamewhen ID attributes are absenttool:Search_User_Filesfilter:queryfallback: If the corpus is government-file based, useSearch_Government_Fileswithqueryon the same filename phrase.
Usage Patterns
Pattern A: Focused requirement extraction from a known store. Tool: Search_Vector_Store
Pattern B: Concept-level discovery with query rewriting enabled. Tool: Search_Vector_Store
Pattern C: Quick triage pass to verify relevant evidence exists before deeper follow-up. Tool: Search_Vector_Store
Last updated
Was this helpful?
