(self)
| 11 | """Base class for all parser demos.""" |
| 12 | |
| 13 | def __init__(self): |
| 14 | print(f"\n🚀 Initializing {self.__class__.__name__}...") |
| 15 | self.embedder, self.llm = build_llm_and_embedder() |
| 16 | self.parser = self.create_parser() |
| 17 | print("✅ Initialization complete.\n") |
| 18 | |
| 19 | def create_parser(self): |
| 20 | """Create and return the specific parser instance.""" |
nothing calls this directly
no test coverage detected