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.33.tar.gz
(10.6 kB
view details)
Built Distribution
zep_python-0.33-py3-none-any.whl
(11.4 kB
view details)
File details
Details for the file zep_python-0.33.tar.gz
.
File metadata
- Download URL: zep_python-0.33.tar.gz
- Upload date:
- Size: 10.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6bd0a14ef16d4105cff86600fe6d054b72de770d3d53f343733c918bbc8c71a5 |
|
MD5 | 55dc76be64a0e3c5cceb5451820ec74a |
|
BLAKE2b-256 | 9389546dbb844183d71000aabd49add6e35ffa5eabd8aab64c083bed8288c33d |
File details
Details for the file zep_python-0.33-py3-none-any.whl
.
File metadata
- Download URL: zep_python-0.33-py3-none-any.whl
- Upload date:
- Size: 11.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6c8a6b8544363557a6303ec76c1f43b88855b5164886d756d433ce33bef97f21 |
|
MD5 | 678769c196f453801e825258f347036b |
|
BLAKE2b-256 | 6fae69cfd135431eef5d1de2699991144bf40bab9962d4cbf122321cde8b9a1f |