MCPcopy Create free account
hub / github.com/SandAI-org/MAGI-1 / __init__

Method __init__

inference/common/timer.py:31–39  ·  view source on GitHub ↗

Initialize the EventPathTimer. This constructor sets the previous message and time to None, preparing the instance for recording events.

(self)

Source from the content-addressed store, hash-verified

29 """
30
31 def __init__(self):
32 """
33 Initialize the EventPathTimer.
34
35 This constructor sets the previous message and time to None, preparing
36 the instance for recording events.
37 """
38 self.prev_message: str = None
39 self.prev_time: datetime = None
40
41 def reset(self):
42 """

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected