(self, table_name: str)
| 12 | print(f"LanceDB connection established at: {db_path}") |
| 13 | |
| 14 | def get_table(self, table_name: str): |
| 15 | return self.db.open_table(table_name) |
| 16 | |
| 17 | def create_table(self, table_name: str, schema: pa.Schema, mode: str = "overwrite"): |
| 18 | print(f"Creating table '{table_name}' with mode '{mode}'...") |
no outgoing calls
no test coverage detected