Graphorin API reference v0.1.0
Graphorin API reference / @graphorin/memory / / createConversationSearchTool
Function: createConversationSearchTool()
ts
function createConversationSearchTool(deps): Tool<{
query: string;
topK?: number;
}, {
matches: {
messageId: string;
score: number;
}[];
}>;Defined in: packages/memory/src/tools/recall-tools.ts:100
conversation_search — FTS5 search over the active session messages.
Parameters
| Parameter | Type |
|---|---|
deps | MemoryToolDeps |
Returns
Tool<{ query: string; topK?: number; }, { matches: { messageId: string; score: number; }[]; }>