MCPcopy
hub / github.com/HKUDS/MiniRAG / change_status

Method change_status

minirag/kg/oracle_impl.py:331–334  ·  view source on GitHub ↗
(self, id: str, status: str)

Source from the content-addressed store, hash-verified

329 return None
330
331 async def change_status(self, id: str, status: str):
332 SQL = SQL_TEMPLATES["change_status"].format(table_name=N_T[self.namespace])
333 params = {"workspace": self.db.workspace, "id": id, "status": status}
334 await self.db.execute(SQL, params)
335
336 async def index_done_callback(self):
337 if self.namespace in ["full_docs", "text_chunks"]:

Callers

nothing calls this directly

Calls 1

executeMethod · 0.45

Tested by

no test coverage detected