Memfuse Python SDK
Project description
MemFuse Python SDK
The official Python client for MemFuse, the open-source memory layer for LLMs.
Explore the Docs »
View Demo
·
Report Bug
·
Request Feature
Table of Contents
About MemFuse
Large language model applications are inherently stateless by design. When the context window reaches its limit, previous conversations, user preferences, and critical information simply disappear.
MemFuse bridges this gap by providing a persistent, queryable memory layer between your LLM and storage backend, enabling AI agents to:
- Remember user preferences and context across sessions
- Recall facts and events from thousands of interactions later
- Optimize token usage by avoiding redundant chat history resending
- Learn continuously and improve performance over time
This repository contains the official Python SDK for seamless integration with MemFuse servers. For comprehensive information about the MemFuse server architecture and advanced features, please visit the MemFuse Server repository.
Installation
Note: This is the standalone Client SDK repository. If you need to install and run the MemFuse server, which is essential to use the SDK, please visit the MemFuse Server repository.
You can install the MemFuse Python SDK using one of the following methods:
Option 1: Install from PyPI (Recommended)
pip install memfuse
Option 2: Install from Source
git clone https://github.com/memfuse/memfuse-python.git
cd memfuse-python
pip install -e .
Quick Start
Here's a comprehensive example demonstrating how to use the MemFuse Python SDK with OpenAI:
from memfuse.llm import OpenAI
from memfuse import MemFuse
import os
memfuse_client = MemFuse(
# api_key=os.getenv("MEMFUSE_API_KEY")
# base_url=os.getenv("MEMFUSE_BASE_URL"),
)
memory = memfuse_client.init(
user="alice",
# agent="agent_default",
# session=<randomly-generated-uuid>
)
# Initialize your LLM client with the memory scope
llm_client = OpenAI(
api_key=os.getenv("OPENAI_API_KEY"), # Your OpenAI API key
memory=memory
)
# Make a chat completion request
response = llm_client.chat.completions.create(
model="gpt-4o", # Or any model supported by your LLM provider
messages=[{"role": "user", "content": "I'm planning a trip to Mars. What is the gravity there?"}]
)
print(f"Response: {response.choices[0].message.content}")
# Example Output: Response: Mars has a gravity of about 3.721 m/s², which is about 38% of Earth's gravity.
Contextual Follow-up
Now, ask a follow-up question. MemFuse will automatically recall relevant context from the previous conversation:
# Ask a follow-up question. MemFuse automatically recalls relevant context.
followup_response = llm_client.chat.completions.create(
model="gpt-4o",
messages=[{"role": "user", "content": "What are some challenges of living on that planet?"}]
)
print(f"Follow-up: {followup_response.choices[0].message.content}")
# Example Output: Follow-up: Some challenges of living on Mars include its thin atmosphere, extreme temperatures, high radiation levels, and the lack of liquid water on the surface.
MemFuse automatically manages the retrieval of relevant information and storage of new memories from conversations within the specified memory scope.
Examples
Explore comprehensive examples in the examples/ directory of this repository, featuring:
- Basic Operations: Fundamental usage patterns and asynchronous operations
- Conversation Continuity: Maintaining context across multiple interactions
- UI Integrations: Gradio-based chatbot implementations with streaming support
Documentation
- Server Documentation: For detailed information about the MemFuse server architecture and advanced configuration, visit the MemFuse online documentation
- SDK Documentation: Comprehensive API references and guides will be available soon
Community & Support
Join our growing community:
- GitHub Discussions: Participate in roadmap discussions, RFCs, and Q&A in the MemFuse Server repository
- Issues & Features: Report bugs or request features in this repository's Python SDK Issues section
If MemFuse enhances your projects, please ⭐ star both the server repository and this SDK repository!
License
This MemFuse Python SDK is licensed under the Apache 2.0 License. See the LICENSE file for complete details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file memfuse-0.2.0.tar.gz.
File metadata
- Download URL: memfuse-0.2.0.tar.gz
- Upload date:
- Size: 36.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.11.9 Darwin/24.5.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
af2066f2050c87f156193a6ac4745ea8b8c64921576784a3caa98a6fe242c9ce
|
|
| MD5 |
932d87efcb2676e691e93b6da5423124
|
|
| BLAKE2b-256 |
6621768b236bc2970a1ea415a1c0540369ce11461d7892b161d5a944bfc6215f
|
File details
Details for the file memfuse-0.2.0-py3-none-any.whl.
File metadata
- Download URL: memfuse-0.2.0-py3-none-any.whl
- Upload date:
- Size: 45.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.11.9 Darwin/24.5.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9e136fd8923647fc5603af3579c6778974178a224604056ad3b284ff533b7858
|
|
| MD5 |
a8a0ed2a9dc1f82dd035aee6178560f9
|
|
| BLAKE2b-256 |
ca6255a1f612c9d456dc0c0cbfaf5bb0906bf29de555adf79d7fc75b9e738a99
|