> ## Documentation Index
> Fetch the complete documentation index at: https://docs.ame.network/llms.txt
> Use this file to discover all available pages before exploring further.

# Memory

Memory is a functional module used to store, manage, and call historical data.

```python theme={null}
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)
```
