| """ | |
| π― EKALAVYA Model Package - The Ultimate AI Assistant | |
| π» Coding β’ πΌοΈ Vision β’ π₯ Video β’ π Teaching β’ π§ Memory β’ π‘οΈ Safety | |
| """ | |
| # π Multi-Modal | |
| from .multimodal import EkalavyaMultiModal, process_image, process_audio, process_video | |
| # π§ Memory & Learning | |
| from .memory import MemorySystem, EnglishMistakeDetector, ConversationStyle | |
| # π Teaching | |
| from .teaching import TeachingMode | |
| # π‘οΈ Safety | |
| from .safety import SafetyRules, EthicalGuidelines | |
| # π Deep Reasoning | |
| from .deep_reasoning import DeepReasoningEngine, ChainOfThoughtGenerator | |
| # π€ Tokenizer | |
| from .tokenizer import IndianLanguageTokenizer | |
| # π» Coding AI | |
| from .coding_ai import CodingAI, CodeFile, CodeIssue | |
| # πΌοΈ Vision AI | |
| from .vision_ai import VisionAI | |
| # π₯ Video AI | |
| from .video_ai import VideoAnalyzer, CameraProcessor | |
| __all__ = [ | |
| # π Multi-Modal | |
| 'EkalavyaMultiModal', | |
| 'process_image', | |
| 'process_audio', | |
| 'process_video', | |
| # π§ Memory & Learning | |
| 'MemorySystem', | |
| 'EnglishMistakeDetector', | |
| 'ConversationStyle', | |
| # π Teaching | |
| 'TeachingMode', | |
| # π‘οΈ Safety | |
| 'SafetyRules', | |
| 'EthicalGuidelines', | |
| # π Deep Reasoning | |
| 'DeepReasoningEngine', | |
| 'ChainOfThoughtGenerator', | |
| # π€ Tokenizer | |
| 'IndianLanguageTokenizer', | |
| # π» Coding AI | |
| 'CodingAI', | |
| 'CodeFile', | |
| 'CodeIssue', | |
| # πΌοΈ Vision AI | |
| 'VisionAI', | |
| # π₯ Video AI | |
| 'VideoAnalyzer', | |
| 'CameraProcessor' | |
| ] | |