This release is a pre-release and may not be stable for production use.
Zep Python Library
The Zep Python library provides convenient access to the Zep APIs from Python.
Table of Contents
- What Is Zep 💬
- Installation
- Reference
- Usage
- Async Client
- Exception Handling
- Pagination
- Advanced
- Contributing
What is Zep? 💬
Zep is a context engineering platform for AI Assistant apps. With Zep, you can provide AI assistants with the ability to recall past conversations, no matter how distant, while also reducing hallucinations, latency, and cost.
Cloud Installation
You can install the Zep Cloud SDK by running:
pip install zep-cloud
[!NOTE] Zep Cloud overview and cloud sdk guide.
How Zep works
Zep persists and recalls chat histories, and automatically generates summaries and other artifacts from these chat histories. It also embeds messages and summaries, enabling you to search Zep for relevant context from past conversations. Zep does all of this asynchronously, ensuring these operations don't impact your user's chat experience. Data is persisted to database, allowing you to scale out when growth demands.
Zep allows you to be more intentional about constructing your prompt:
- automatically adding a few recent messages, with the number customized for your app;
- a summary of recent conversations prior to the messages above;
- and/or contextually relevant summaries or messages surfaced from the entire chat session.
You will also need to provide a Zep Project API key to your zep client. You can find out about zep projects in our cloud docs
Installation
pip install zep-cloud
Reference
A full reference for this library is available here.
Usage
Instantiate and use the client with the following:
from zep_cloud import Zep
client = Zep(
api_key="<value>",
)
client.batch.create()
Async Client
The SDK also exports an async client so that you can make non-blocking calls to our API. Note that if you are constructing an Async httpx client class to pass into this client, use httpx.AsyncClient() instead of httpx.Client() (e.g. for the httpx_client parameter of this client).
import asyncio
from zep_cloud import AsyncZep
client = AsyncZep(
api_key="<value>",
)
async def main() -> None:
await client.batch.create()
asyncio.run(main())
Exception Handling
When the API returns a non-success status code (4xx or 5xx response), a subclass of the following error will be thrown.
from zep_cloud.core.api_error import ApiError
try:
client.batch.create(...)
except ApiError as e:
print(e.status_code)
print(e.body)
Pagination
Paginated requests will return a SyncPager or AsyncPager, which can be used as generators for the underlying object.
from zep_cloud import Zep
client = Zep(
api_key="<value>",
)
client.batch.list(
limit=1,
cursor="cursor",
status="status",
)
# You can also iterate through pages and access the typed response per page
pager = client.batch.list(...)
for page in pager.iter_pages():
print(page.response) # access the typed response for each page
for item in page:
print(item)
Advanced
Access Raw Response Data
The SDK provides access to raw response data, including headers, through the .with_raw_response property.
The .with_raw_response property returns a "raw" client that can be used to access the .headers and .data attributes.
from zep_cloud import Zep
client = Zep(...)
response = client.batch.with_raw_response.create(...)
print(response.headers) # access the response headers
print(response.status_code) # access the response status code
print(response.data) # access the underlying object
Retries
The SDK is instrumented with automatic retries with exponential backoff. A request will be retried as long as the request is deemed retryable and the number of retry attempts has not grown larger than the configured retry limit (default: 2).
A request is deemed retryable when any of the following HTTP status codes is returned:
Use the max_retries request option to configure this behavior.
client.batch.create(..., request_options={
"max_retries": 1
})
Timeouts
The SDK defaults to a 60 second timeout. You can configure this with a timeout option at the client or request level.
from zep_cloud import Zep
client = Zep(..., timeout=20.0)
# Override timeout for a specific method
client.batch.create(..., request_options={
"timeout_in_seconds": 1
})
Custom Client
You can override the httpx client to customize it for your use-case. Some common use-cases include support for proxies
and transports.
import httpx
from zep_cloud import Zep
client = Zep(
...,
httpx_client=httpx.Client(
proxy="http://my.test.proxy.example.com",
transport=httpx.HTTPTransport(local_address="0.0.0.0"),
),
)
Contributing
While we value open-source contributions to this SDK, this library is generated programmatically. Additions made directly to this library would have to be moved over to our generation code, otherwise they would be overwritten upon the next generated release. Feel free to open a PR as a proof of concept, but know that we will not be able to merge it as-is. We suggest opening an issue first to discuss with us!
On the other hand, contributions to the README are always very welcome!
Release files for zep-cloud 4.0.0a5
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| zep_cloud-4.0.0a5.tar.gz | 118.7 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| zep_cloud-4.0.0a5-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 330.5 kB
Release files / zep_cloud-4.0.0a5.tar.gz
| Download URL | zep_cloud-4.0.0a5.tar.gz |
|---|---|
| Size | 118.7 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
9b8bb4dfd605c6e9f20c7f41cb466561e82bb05bf03338bdae939a68d81ab08e
|
|
BLAKE2b-256 checksum How to use checksums |
35ef9047394a58e99176cb48d91d1fd9d6abb9f4b37a25f45bd45f2274d1ad0b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 26, 2026.
Transparency logRelease files / zep_cloud-4.0.0a5-py3-none-any.whl
| Download URL | zep_cloud-4.0.0a5-py3-none-any.whl |
|---|---|
| Size | 211.9 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
b7f89e92a9e3d3167e82c3e0688fa69c02013292ed4d77f6b86a7d7502f0022e
|
|
BLAKE2b-256 checksum How to use checksums |
4e1560eabd25863d0be6867cc7d153e8bc837978e9fd563ff114865f4e889c2f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 26, 2026.
Transparency log