feat: agent state endpoint + search module

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-21 14:21:40 +05:30
parent 8ba326589c
commit 4963a698d9
4 changed files with 128 additions and 0 deletions

View File

@@ -11,6 +11,7 @@ import { GraphqlProxyModule } from './graphql-proxy/graphql-proxy.module';
import { HealthModule } from './health/health.module';
import { WorklistModule } from './worklist/worklist.module';
import { CallAssistModule } from './call-assist/call-assist.module';
import { SearchModule } from './search/search.module';
@Module({
imports: [
@@ -28,6 +29,7 @@ import { CallAssistModule } from './call-assist/call-assist.module';
HealthModule,
WorklistModule,
CallAssistModule,
SearchModule,
],
})
export class AppModule {}