Zep stores, manages, enriches, indexes, and searches long-term memory for conversational AI applications. This is the Python client for the Zep service.
Project description
Zep: A long-term memory store for conversational AI applications
This is the Python client package for the Zep service. For more information about Zep, see https://github.com/getzep/zep.
Zep documentation: https://docs.getzep.com
Installation
pip install zep-python
or
poetry add zep-python
Quick Start
Ensure that you have a Zep server running. See https://github.com/getzep/zep.
import asyncio
from zep_python import Memory, Message, MemorySearchPayload, ZepClient
base_url = "http://localhost:8000" # TODO: Replace with Zep API URL
session_id = "2a2a2a" # an identifier for your user's session.
async with ZepClient(base_url) as client:
role = "user"
content = "who was the first man to go to space?"
message = Message(role=role, content=content)
memory = Memory()
memory.messages = [message]
# Add a memory
result = await client.aadd_memory(session_id, memory)
# Long chat histories will automatically be summarized.
# A summary and chat history are returned with a `get_memory`
memory = await client.aget_memory(session_id)
for message in memory.messages:
print(message.to_dict())
# Search memory
# Messages uploaded to Zep are automatically embedded and made available
# for vector-based similarity search.
search_payload = MemorySearchPayload("Who is Yuri Gagarin?")
search_results = await client.asearch_memory(session_id, search_payload)
for search_result in search_results:
# Access the 'content' field within the 'message' object.
message_content = search_result.message
print(message_content)
Server Installation and SDK Documentation
Server installation documentation and more available here: https://getzep.github.io
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
zep_python-0.31.tar.gz
(9.9 kB
view details)
Built Distribution
zep_python-0.31-py3-none-any.whl
(10.6 kB
view details)
File details
Details for the file zep_python-0.31.tar.gz
.
File metadata
- Download URL: zep_python-0.31.tar.gz
- Upload date:
- Size: 9.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.1 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 94203fb9c109e0e933f7ced34dc91d55bdf403561e25e691ea33dadd763042e1 |
|
MD5 | 31a60671f3c6d5213fdf3c3cab5baa4b |
|
BLAKE2b-256 | d8821ac545018037600bf7a19dcb1dfa413e753ac437a86b03635eef8ce7f1ed |
File details
Details for the file zep_python-0.31-py3-none-any.whl
.
File metadata
- Download URL: zep_python-0.31-py3-none-any.whl
- Upload date:
- Size: 10.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.1 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 379f3666cea21a055f014be6de2fd831f38be71a4b0056cea2536199bca0695a |
|
MD5 | cfb37bc9bd91f70a364c6a0fb370e582 |
|
BLAKE2b-256 | 26c62e4fd686bd28b3aebe6ba2f6b4160ac46a718ffe958bd16f4231496a04d0 |