From ca7bf7c9c44ba33d196f900f5ff9bbc3e9f305d0 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Tue, 22 Aug 2023 20:39:12 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20chore(pyproject.toml):=20add=20z?= =?UTF-8?q?ep-python=20as=20a=20development=20dependency=20to=20enable=20u?= =?UTF-8?q?sage=20of=20zep-python=20library=20for=20testing=20purposes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- poetry.lock | 17 ++++++++++++++++- pyproject.toml | 1 + 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/poetry.lock b/poetry.lock index ed752f257..6624a2237 100644 --- a/poetry.lock +++ b/poetry.lock @@ -7352,6 +7352,21 @@ files = [ idna = ">=2.0" multidict = ">=4.0" +[[package]] +name = "zep-python" +version = "1.1.0a0" +description = "Zep stores, manages, enriches, indexes, and searches long-term memory for conversational AI applications. This is the Python client for the Zep service." +optional = false +python-versions = ">=3.8.1,<4" +files = [ + {file = "zep_python-1.1.0a0-py3-none-any.whl", hash = "sha256:2856e70f9e11ca9d1e1c210bf532ea9288b6a4cc9f2435bc7b84cf6de5ee5c34"}, + {file = "zep_python-1.1.0a0.tar.gz", hash = "sha256:19537fe6780c88f2558e890f0a26657b3201d6ea9b568fba0cf7aa634b77c1fc"}, +] + +[package.dependencies] +httpx = ">=0.24.0,<0.25.0" +pydantic = ">=1.10.7" + [[package]] name = "zipp" version = "3.16.2" @@ -7433,4 +7448,4 @@ local = ["ctransformers", "llama-cpp-python", "sentence-transformers"] [metadata] lock-version = "2.0" python-versions = ">=3.9,<3.11" -content-hash = "95ac4e1ab2cab8b0cf3bc152296a72a3b6892dd66a1fa14d6661cfdfc0365d86" +content-hash = "dc36c07f18b2d7045af0901307877809196ab4becf8c7e5b7ab2ca85c404bb21" diff --git a/pyproject.toml b/pyproject.toml index da0feeb99..f873554c4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -84,6 +84,7 @@ bcrypt = "^4.0.1" python-jose = "^3.3.0" metaphor-python = "^0.1.11" pydantic-settings = "^2.0.3" +zep-python = {version = "^1.1.0a0", allow-prereleases = true} [tool.poetry.group.dev.dependencies] black = "^23.1.0"