@agentek/tools
Version:
Blockchain tools for AI agents
12 lines • 414 B
JavaScript
import { createToolCollection } from "../client.js";
import { createCoindeskNewsTool } from "./tools.js";
export function coindeskTools({ coindeskApiKey, }) {
if (!coindeskApiKey) {
throw new Error("Coindesk API key is required for using these tools.");
}
return createToolCollection([
// tools
createCoindeskNewsTool(coindeskApiKey),
]);
}
//# sourceMappingURL=index.js.map