@agentkai/node
Version:
AgentKai的Node.js环境特定实现
20 lines (19 loc) • 424 B
TypeScript
/**
* Node.js环境平台抽象层实现包
*/
import { PlatformServices } from '@agentkai/core';
/**
* 重新导出Core包
*/
export * from '@agentkai/core';
/**
* 导出特定服务
*/
export * from './services/config.service';
export * from './services/platform';
export * from './core/AISystem';
/**
* Node.js环境平台服务实例
*/
declare const nodePlatform: PlatformServices;
export default nodePlatform;