UNPKG

@bonginkan/maria

Version:

MARIA OS v5.9.5 – Self-Evolving Organizational Intelligence OS | Speed Improvement Phase 3: LLM Optimization + Command Refactoring | Performance Measurement + Run Evidence System | Zero ESLint/TypeScript Errors | 人とAIが役割を持ち、学び、進化し続けるための仕事のOS | GraphRAG ×

12 lines (11 loc) 429 B
export type SupportedLanguage = "en" | "ja" | "cn" | "ko" | "vn"; export declare class LanguageDetector { private languagePatterns; private characterRanges; constructor(); detect(text: string): Promise<SupportedLanguage>; private calculateScores; private initializePatterns; getLanguageName(code: SupportedLanguage): string; isSupported(languageCode: string): languageCode is SupportedLanguage; }