MCPcopy
hub / github.com/llmware-ai/llmware / __init__

Method __init__

llmware/resources.py:3072–3078  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

get_llmware_pathMethod · 0.80

Tested by

no test coverage detected