From 37ee3c5eb2e0149eeacd0d07c0512f7b16150705 Mon Sep 17 00:00:00 2001 From: Saket Aryan Date: Thu, 24 Jul 2025 15:16:47 +0530 Subject: [PATCH] docs: Update for new Project API and deprecation notices (#3212) --- docs/changelog.mdx | 25 +++++++++++++++++++++++++ pyproject.toml | 2 +- 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/docs/changelog.mdx b/docs/changelog.mdx index 7f88ac64..0fd81fbb 100644 --- a/docs/changelog.mdx +++ b/docs/changelog.mdx @@ -8,6 +8,31 @@ mode: "wide" + + +**New Features & Updates:** +- Enhanced project management via `client.project` and `AsyncMemoryClient.project` interfaces +- Full support for project CRUD operations (create, read, update, delete) +- Project member management: add, update, remove, and list members +- Manage project settings including custom instructions, categories, retrieval criteria, and graph enablement +- Both sync and async support for all project management operations + +**Improvements:** +- **Documentation:** + - Added detailed API reference and usage examples for new project management methods. + - Updated all docs to use `client.project.get()` and `client.project.update()` instead of deprecated methods. + +- **Deprecation:** + - Marked `get_project()` and `update_project()` as deprecated (these methods were already present); added warnings to guide users to the new API. + +**Bug Fixes:** +- **Tests:** + - Fixed Gemini embedder and LLM test mocks for correct error handling and argument structure. +- **vLLM:** + - Fixed duplicate import in vLLM module. + + + **New Features:** diff --git a/pyproject.toml b/pyproject.toml index ca70c790..05e2bb24 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "mem0ai" -version = "0.1.114" +version = "0.1.115" description = "Long-term memory for AI Agents" authors = [ { name = "Mem0", email = "founders@mem0.ai" }