feat: search endpoint (#198)

Co-authored-by: Letta <noreply@letta.com>
This commit is contained in:
Charles Packer
2025-12-12 17:16:09 -08:00
committed by GitHub
parent f61ecd6849
commit 8bb588e5af
5 changed files with 372 additions and 4 deletions

View File

@@ -143,6 +143,13 @@ export const commands: Record<string, Command> = {
return "Opening session selector...";
},
},
"/search": {
desc: "Search messages across all agents",
handler: () => {
// Handled specially in App.tsx to show message search
return "Opening message search...";
},
},
};
/**