MCPcopy Create free account
hub / github.com/AQ-MedAI/MedMemoryBench / start

Method start

methods/memrl_agent.py:178–187  ·  view source on GitHub ↗

Start progress tracking.

(self, total_chunks: int)

Source from the content-addressed store, hash-verified

176 build_logs: List[Dict[str, Any]] = field(default_factory=list)
177
178 def start(self, total_chunks: int) -> None:
179 """Start progress tracking."""
180 self.total_chunks = total_chunks
181 self.processed_chunks = 0
182 self.successful_builds = 0
183 self.failed_builds = 0
184 self.total_memories_created = 0
185 self.start_time = time.time()
186 self.chunk_timings = []
187 self.build_logs = []
188
189 def record_chunk(
190 self,

Callers 3

bulma-carousel.jsFile · 0.45
memorizeMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected