funchub-nestjs
v0.1.4
Published
FuncHub NestJS SDK - A tool registry and dynamic loader for AI agents
Readme
funchub-nestjs
NestJS SDK for FuncHub (funchub-sdk for Python) - A tool registry and dynamic loader for AI Agents.
Installation
npm install funchub-nestjsUsage
import { FuncHub } from '@funchub/nestjs';
const hub = new FuncHub();
// Search for tools
const results = await hub.search('scraper');
// Install a tool
await hub.install('web_scraper@^1.0');
// Load and use a tool
const scraper = await hub.load('web_scraper');
const result = await scraper({ url: 'https://example.com' });For full documentation, see FuncHub on GitHub.
