git status

This commit is contained in:
Jaret Burkett
2025-10-01 14:12:17 -06:00
parent b07b88c46b
commit 3086a58e5b
8 changed files with 438 additions and 31 deletions

View File

@@ -0,0 +1 @@
from .manager import MemoryManager

View File

@@ -0,0 +1,12 @@
from typing import TYPE_CHECKING
if TYPE_CHECKING:
from toolkit.models.base_model import BaseModel
class MemoryManager:
def __init__(
self,
model: "BaseModel",
):
self.model: "BaseModel" = model