Aser Agent
Memory
Memory is a functional module used to store, manage, and call historical data.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
from aser.agent import Agent
from aser.memory import Memory
memory = Memory(type="sqlite")
agent = Agent(
name="aser agent", description="aser agent", model="gpt-3.5-turbo", memory=memory
)
response = agent.chat("What is Bitcoin?", uid=1)
print(response)
