Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions basics/database/async-sqlite.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ db = AsyncSqliteDb(db_file="tmp/data.db")

# Setup a basic agent with the SQLite database
agent = Agent(db=db)

# ... do your work with the agent

# and close the DB ! Otherwise your program won't exit
await agent.db.close()
```

## Params
Expand Down