MCPcopy Create free account
hub / github.com/anthropics/anthropic-sdk-python / start

Method start

examples/memory/basic.py:50–53  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

48 self.thread = None
49
50 def start(self):
51 self.spinning = True
52 self.thread = threading.Thread(target=self._spin)
53 self.thread.start()
54
55 def stop(self):
56 self.spinning = False

Calls

no outgoing calls