Initialize simple PDF processor with SQLite storage
(self, db_path: str = "chat_data.db")
| 12 | |
| 13 | class SimplePDFProcessor: |
| 14 | def __init__(self, db_path: str = "chat_data.db"): |
| 15 | """Initialize simple PDF processor with SQLite storage""" |
| 16 | self.db_path = db_path |
| 17 | self.init_database() |
| 18 | print("✅ Simple PDF processor initialized") |
| 19 | |
| 20 | def init_database(self): |
| 21 | """Initialize SQLite database for storing PDF content""" |
nothing calls this directly
no test coverage detected