chore: first commit

This commit is contained in:
Han Xiao 2025-01-31 18:27:44 +08:00
parent b48f7afb6d
commit d8678467d7

View File

@ -25,12 +25,6 @@ export async function braveSearch(query: string): Promise<{ response: BraveSearc
timeout: 10000
});
// Keep the same console.log as the original code
console.log('Brave Search:', response.data.web.results.map(item => ({
title: item.title,
url: item.url
})));
// Maintain the same return structure as the original code
return { response: response.data };
}