mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-05-02 11:52:38 +02:00
Add tool search functionality to settings dialog
Implemented a debounced search feature for tools within the toolkit, allowing users to filter tools based on a search query. Added state management for search results and loading status. Updated the UI to accommodate the search input and results display. Additionally, modified the API call to use 'query' instead of 'search' for consistency.
This commit is contained in:
parent
eb6d50c7bd
commit
dc2c6b0315
2 changed files with 125 additions and 16 deletions
|
|
@ -314,7 +314,7 @@ export async function listToolkitToolsDetailed(
|
|||
url.searchParams.set('toolkit_slug', toolkitSlug);
|
||||
url.searchParams.set('limit', '200');
|
||||
if (searchQuery) {
|
||||
url.searchParams.set('search', searchQuery);
|
||||
url.searchParams.set('query', searchQuery);
|
||||
}
|
||||
|
||||
console.log(`[Composio] Listing tools (detailed) for toolkit: ${toolkitSlug}`);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue