Spaces:
Paused
Paused
File size: 290 Bytes
8d1819a |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
from python.helpers.extension import Extension
from agent import LoopData
from python.helpers import memory
import asyncio
class MemoryInit(Extension):
async def execute(self, loop_data: LoopData = LoopData(), **kwargs):
db = await memory.Memory.get(self.agent)
|