From bf6d2e694e1416b32010cc1fb2cbde1ffb0bdd2e Mon Sep 17 00:00:00 2001 From: paulpaliychuk Date: Wed, 22 May 2024 18:34:57 -0400 Subject: [PATCH 1/4] chore: Bump version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e49fce9..5c5f83c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@getzep/zep-cloud", - "version": "1.0.2", + "version": "1.0.3", "private": false, "repository": "https://github.com/getzep/zep-js", "description": "Zep: Fast, scalable building blocks for production LLM apps", From 1b91a96f190b81465974cbc0fa921932ca4ebac4 Mon Sep 17 00:00:00 2001 From: paulpaliychuk Date: Sun, 29 Sep 2024 18:07:43 -0400 Subject: [PATCH 2/4] chore: Update readme callout --- README.md | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a9258b6..0d87d13 100644 --- a/README.md +++ b/README.md @@ -23,16 +23,28 @@ Zep: Long-Term Memory for ‍AI Assistants. ## What is Zep? 💬 Zep is a long-term memory service 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. -### Installation Notes -Main branch contains the latest version of zep-cloud sdk. You can install it by running: +### Cloud Installation +You can install cloud sdk it by running: ```bash npm install @getzep/zep-cloud ``` +> [!NOTE] +> Zep Cloud [overview](https://help.getzep.com/concepts) and [cloud sdk guide](https://help.getzep.com/sdks). -Open Source Compatible SDK is available in the [oss](https://github.com/getzep/zep-js/tree/oss) branch, where you can also find Open Source compatible examples. You can install it by running: +### Community Installation ```bash npm install @getzep/zep-js ``` +> [!NOTE] +> Zep Community Edition [quick start](https://help.getzep.com/ce/quickstart) and [sdk guide](https://help.getzep.com/ce/sdks). + +### Zep v0.x Compatible SDK +You can install Zep v0.x compatible sdk by running: +```bash +npm install @getzep/zep-js@^0.10.0 +``` +> [!NOTE] +> Zep v0.x [quick start](https://help.getzep.com/ce/legacy/deployment/quickstart) and [sdk guide](https://help.getzep.com/ce/legacy/sdk). ### How Zep works From e9ba590b51adbec5979b32c2c5b4056574fefb67 Mon Sep 17 00:00:00 2001 From: paulpaliychuk Date: Mon, 30 Sep 2024 16:08:57 -0400 Subject: [PATCH 3/4] chore: Fix grammar --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0d87d13..65633d6 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Zep: Long-Term Memory for ‍AI Assistants. Zep is a long-term memory service 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 cloud sdk it by running: +You can install cloud sdk by running: ```bash npm install @getzep/zep-cloud ``` From 5ff7ab1d36296025aff2775972fc5a9388b990cd Mon Sep 17 00:00:00 2001 From: Daniel Chalef <131175+danielchalef@users.noreply.github.com> Date: Mon, 30 Sep 2024 14:32:45 -0700 Subject: [PATCH 4/4] Update README.md Signed-off-by: Daniel Chalef <131175+danielchalef@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 65633d6..3e6030e 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Zep: Long-Term Memory for ‍AI Assistants. Zep is a long-term memory service 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 cloud sdk by running: +You can install the Zep Cloud SDK by running: ```bash npm install @getzep/zep-cloud ```