From 87cee8c875976fc80157ebf91ed5dc281f58ad6f Mon Sep 17 00:00:00 2001 From: human058382928 <162091348+human058382928@users.noreply.github.com> Date: Mon, 11 Nov 2024 09:28:20 -0800 Subject: [PATCH] fix tools --- src/lib/tools.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/tools.ts b/src/lib/tools.ts index 3f764c0c..23c3f7b1 100644 --- a/src/lib/tools.ts +++ b/src/lib/tools.ts @@ -25,7 +25,7 @@ export async function fetchTools(): Promise { if (toolsCache) return toolsCache; try { - const response = await fetch('https://core.aibtc.dev/tools'); + const response = await fetch('https://core.aibtc.dev/crew/tools'); const data = await response.json() as Record; const tools: Tool[] = Object.entries(data).map(([id, description]) => {