mirror of
https://github.com/andy-stack/vaultkeeper-ai.git
synced 2026-07-22 06:42:03 +00:00
- Implement ITokenService interface and GeminiTokenService for token counting - Add StatusBarService for managing status bar messages - Extract AIProviderModel enum to centralize model configuration - Remove unused MessageService and AIThoughtMessage classes - Update dependency registration to include new services - Clean up main plugin initialization and status bar handling
3 lines
No EOL
83 B
TypeScript
3 lines
No EOL
83 B
TypeScript
export interface ITokenService {
|
|
countTokens(input: string): Promise<number>;
|
|
} |