File size: 832 Bytes
68d7816 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | import { LifecycleScope } from '#/app/scopes';
import { Feature } from '#/features/feature';
import { registerFeature } from '#/features/featureRegistry';
import { ISessionTokenCountingService } from '#/session/tokenCounting/sessionTokenCounting';
import { SessionTokenCountingService } from '#/session/tokenCounting/sessionTokenCountingService';
import { TokenCountingAgentModelDefinition } from '#/session/tokenCounting/tokenCountingAgentModel';
export class TokenCountingFeature extends Feature {
static override readonly name = 'tokenCounting';
constructor() {
super();
this.contributeAgentModel(TokenCountingAgentModelDefinition);
this.contributeService(
LifecycleScope.Session,
ISessionTokenCountingService,
SessionTokenCountingService,
);
}
}
registerFeature(TokenCountingFeature);
|