MCPcopy Create free account
hub / github.com/VectifyAI/OpenKB / start

Method start

openkb/agent/compiler.py:345–349  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

343 self._thread: threading.Thread | None = None
344
345 def start(self) -> None:
346 sys.stdout.write(f" {self._label}")
347 sys.stdout.flush()
348 self._thread = threading.Thread(target=self._run, daemon=True)
349 self._thread.start()
350
351 def _run(self) -> None:
352 while not self._stop.wait(timeout=1.0):

Callers 6

_schedule_flushMethod · 0.80
watch_directoryFunction · 0.80
_llm_callFunction · 0.80
_start_liveFunction · 0.80
_start_liveFunction · 0.80

Calls 1

writeMethod · 0.80