From c8a5c6f0e9d0d92bdfb1c2428c51a82961a91528 Mon Sep 17 00:00:00 2001 From: Dev Khant Date: Sat, 20 Jul 2024 22:41:01 +0530 Subject: [PATCH] Update mem0 version in embedchain (#1512) --- README.md | 3 +++ embedchain/pyproject.toml | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index db7dce34..2d2f5e15 100644 --- a/README.md +++ b/README.md @@ -30,8 +30,11 @@ pip install mem0ai ### Basic Usage ```python +import os from mem0 import Memory +os.environ["OPENAI_API_KEY"] = "xxx" + # Initialize Mem0 m = Memory() diff --git a/embedchain/pyproject.toml b/embedchain/pyproject.toml index 38d41d28..84d0b165 100644 --- a/embedchain/pyproject.toml +++ b/embedchain/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "embedchain" -version = "0.1.118" +version = "0.1.119" description = "Simplest open source retrieval (RAG) framework" authors = [ "Taranjeet Singh ", @@ -103,7 +103,7 @@ beautifulsoup4 = "^4.12.2" pypdf = "^4.0.1" gptcache = "^0.1.43" pysbd = "^0.3.4" -mem0ai = "^0.0.5" +mem0ai = "^0.0.9" tiktoken = { version = "^0.7.0", optional = true } sentence-transformers = { version = "^2.2.2", optional = true } torch = { version = "2.3.0", optional = true }