Thread memory for AI agents
Project description
threadmem
Chat thread memory for AI agents
Explore the docs »
View Demo
·
Report Bug
·
Request Feature
Threadmem is a simple tool that helps manage chat conversations with language models.
Backend
Installation
pip install threadmem
Usage
Role Threads
Role based threads are useful for managing openai-style chat schemas.
from threadmem import RoleThread
# Create a thread storing it in a local sqlite db
thread = RoleThread(owner_id="dolores@agentsea.ai")
# Post messages
thread.post("user", "Hello, Thread!")
thread.post("assistant", "How can I help?")
thread.post("user", "Whats this image?", images=["data:image/jpeg;base64,..."])
# Output in openai chat schema format
print(thread.to_oai())
# Find a thread
threads = RoleThread.find(owner_id="dolores@agentsea.ai")
# Delete a thread
threads[0].delete()
Backends
Thread and prompt storage can be backed by:
- Sqlite
- Postgresql
Sqlite will be used by default. To use postgres simply configure the env vars:
DB_TYPE=postgres
DB_NAME=threads
DB_HOST=localhost
DB_USER=postgres
DB_PASS=abc123
Develop
To test
make test
To publish
make publish
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
threadmem-0.2.27.tar.gz
(15.0 kB
view details)
Built Distribution
File details
Details for the file threadmem-0.2.27.tar.gz
.
File metadata
- Download URL: threadmem-0.2.27.tar.gz
- Upload date:
- Size: 15.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.10.1 Darwin/22.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ed24c9674fe7aebf3170dd2eb08ac685ddd5526e73272ad0ab27b68eb54d0ca1 |
|
MD5 | 1f47d1f3b92b514a57e8d2ff53192390 |
|
BLAKE2b-256 | 63d58c772b32a8000ba2874075d968f9c08bea29201d1d8a22e4de509e137e15 |
File details
Details for the file threadmem-0.2.27-py3-none-any.whl
.
File metadata
- Download URL: threadmem-0.2.27-py3-none-any.whl
- Upload date:
- Size: 17.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.10.1 Darwin/22.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 75d69ccb617c7ee80204f569cd4397946461fcf07ec5e843d061253bbbdadc28 |
|
MD5 | 64281831366fc6c6b06a9cd20d6c3013 |
|
BLAKE2b-256 | 245bc4789ec174e46d2642138528ecd8c321188e25c6576b569b080e6758800e |