mirror of
https://github.com/tcsenpai/llm_world.git
synced 2025-06-04 10:10:05 +00:00
10 lines
156 B
Python
10 lines
156 B
Python
from dataclasses import dataclass
|
|
from typing import Tuple
|
|
|
|
|
|
@dataclass
|
|
class Memory:
|
|
event: str
|
|
timestamp: float
|
|
location: Tuple[float, float]
|