feat: agent routing engine — cost/capability matrix (P2-003) (#75)

Co-authored-by: Jason Woltje <jason@diversecanvas.com>
Co-committed-by: Jason Woltje <jason@diversecanvas.com>
This commit was merged in pull request #75.
This commit is contained in:
2026-03-13 03:13:50 +00:00
committed by jason.woltje
parent 95f95f54cf
commit 7485f32e69
5 changed files with 208 additions and 4 deletions

View File

@@ -1,12 +1,13 @@
import { Global, Module } from '@nestjs/common';
import { AgentService } from './agent.service.js';
import { ProviderService } from './provider.service.js';
import { RoutingService } from './routing.service.js';
import { ProvidersController } from './providers.controller.js';
@Global()
@Module({
providers: [ProviderService, AgentService],
providers: [ProviderService, RoutingService, AgentService],
controllers: [ProvidersController],
exports: [AgentService, ProviderService],
exports: [AgentService, ProviderService, RoutingService],
})
export class AgentModule {}