Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

Zep Python Library

fern shield pypi

The Zep Python library provides convenient access to the Zep APIs from Python.

Table of Contents

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:

  1. automatically adding a few recent messages, with the number customized for your app;
  2. a summary of recent conversations prior to the messages above;
  3. 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:

  • 408 (Timeout)
  • 429 (Too Many Requests)
  • 5XX (Internal Server Errors)

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)

Source distribution for zep-cloud 4.0.0a5
File Size Uploaded
zep_cloud-4.0.0a5.tar.gz 118.7 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for zep-cloud 4.0.0a5
File Interpreter ABI Platform
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 log

Release 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

Release history Release notifications | RSS feed

This release

4.0.0a5 This release

2 release files

3.30.0

2 release files

3.29.0

2 release files

3.28.0

2 release files

3.25.0

2 release files

3.24.0

2 release files

3.18.0

2 release files

3.16.0

2 release files

3.15.0

2 release files

3.13.0

2 release files

3.12.0

2 release files

3.11.0

2 release files

3.9.0

2 release files

3.8.0

2 release files

3.7.0

2 release files

3.6.0

2 release files

3.5.0

2 release files

3.4.3

2 release files

3.4.2

2 release files

3.4.1

2 release files

3.4.0

2 release files

3.3.0

2 release files

3.2.0

2 release files

3.1.0

2 release files

3.0.5

2 release files

3.0.0

2 release files

2.22.1

2 release files

2.22.0

2 release files

2.21.0

2 release files

2.19.0

2 release files

2.18.0

2 release files

2.17.0

2 release files

2.16.0

2 release files

2.15.0

2 release files

2.12.3

2 release files

2.12.2

2 release files

2.11.0

2 release files

2.10.2

2 release files

2.10.1

2 release files

2.9.0

2 release files

2.8.0

2 release files

2.7.0

2 release files

2.6.1

2 release files

2.6.0

2 release files

2.5.0

2 release files

2.4.0

2 release files

2.3.1

2 release files

2.2.0

2 release files

2.1.1

2 release files

2.1.0

2 release files

2.0.1

2 release files

2.0.0

2 release files

1.0.9

2 release files

1.0.8

2 release files

1.0.7

2 release files

1.0.6

2 release files

1.0.5

2 release files

1.0.4

2 release files

1.0.3

2 release files

1.0.2

2 release files

1.0.1

2 release files

1.0.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page