helpingai
Version:
The official JavaScript/TypeScript library for the HelpingAI API - Advanced AI with Emotional Intelligence
33 lines • 1.22 kB
JavaScript
/**
* HelpingAI JavaScript/TypeScript SDK
*
* The official JavaScript library for the HelpingAI API - Advanced AI with Emotional Intelligence
*
* @example
* ```typescript
* import { HelpingAI } from 'helpingai';
*
* const client = new HelpingAI({
* apiKey: 'your-api-key'
* });
*
* const response = await client.chat.completions.create({
* model: 'Dhanishtha-2.0-preview',
* messages: [{ role: 'user', content: 'Hello!' }]
* });
* ```
*/
export { HelpingAI } from './client';
export * from './types';
export * from './errors';
// Export tools system selectively to avoid conflicts
export { tools, getTools, getRegistry, clearRegistry, executeTool } from './tools';
// Export builtin tools
export { executeBuiltinTool, isBuiltinTool, getBuiltinToolClass, getAvailableBuiltinTools, createBuiltinTool, getBuiltinToolDefinition, CodeInterpreterTool, WebSearchTool, BUILTIN_TOOLS_REGISTRY, } from './tools/builtin';
// Export MCP integration selectively to avoid conflicts
// export { MCPManager } from './mcp'; // Commented out to avoid conflicts
// Re-export for compatibility
export { HelpingAI as HAI } from './client';
// Version
export const VERSION = '1.0.0';
//# sourceMappingURL=index.js.map