12 lines
219 B
Python
12 lines
219 B
Python
|
|
from __future__ import annotations
|
||
|
|
|
||
|
|
from typing import ClassVar
|
||
|
|
|
||
|
|
from pydantic import BaseModel, ConfigDict
|
||
|
|
|
||
|
|
|
||
|
|
class MemoryContent(BaseModel):
|
||
|
|
model_config: ClassVar[ConfigDict] = ConfigDict(extra="allow")
|
||
|
|
|
||
|
|
pass
|