(self)
| 3070 | """_SQLiteConnect returns a connection to a SQLite DB running locally""" |
| 3071 | |
| 3072 | def __init__(self): |
| 3073 | self.conn = None |
| 3074 | |
| 3075 | # check for llmware path & create if not already set up, e.g., "first time use" |
| 3076 | if not os.path.exists(LLMWareConfig.get_llmware_path()): |
| 3077 | LLMWareConfig.setup_llmware_workspace() |
| 3078 | logger.info("_SQliteConnect - Setting up LLMWare Workspace.") |
| 3079 | |
| 3080 | def connect(self, db_name=None, collection_name=None): |
| 3081 |
nothing calls this directly
no test coverage detected