@cotestdev/core-infra
v0.0.6
Published
Core infrastructure for AI testing framework
Maintainers
Readme
@ai-test/core-infra
Core infrastructure package for AI testing framework.
Features
- MCP (Model Context Protocol): Client and manager implementations
- Repositories: Data access layer with base repository pattern
- Model Factory: Language model creation and tool binding
- Storage Service: Unified storage operations facade
Installation
npm install @ai-test/core-infraUsage
import { MCPManager, StorageService, createModel } from '@ai-test/core-infra';
// Use MCP manager
const mcpManager = new MCPManager();
await mcpManager.start('en-US');
// Use storage service
const storage = StorageService.getInstance();
// Create model
const model = createModel(config, true, mcpManager);Development
# Build
npm run build
# Watch mode
npm run build:watchLicense
MIT
