mirror of
https://github.com/ostris/ai-toolkit.git
synced 2026-01-26 16:39:47 +00:00
13 lines
234 B
Python
13 lines
234 B
Python
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
|