Skip to content

Commit 4697070

Browse files
committed
chore(version): bump version to 0.1.10.1
- Updated __version__ in reme_ai/__init__.py - Updated project version in pyproject.toml- Changed flowllm dependency to include reme extra - Fixed typo in README.md query example
1 parent 04692b1 commit 4697070

File tree

4 files changed

+20
-33
lines changed

4 files changed

+20
-33
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ curl -X POST http://localhost:8002/retrieve_personal_memory \
277277
-H "Content-Type: application/json" \
278278
-d '{
279279
"workspace_id": "task_workspace",
280-
"query": "What are the user's work habits?",
280+
"query": "What are the users work habits?",
281281
"top_k": 5
282282
}'
283283
```

docs/future_work.md

Lines changed: 16 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,18 @@
11
# Future Work
22

3-
## Planned Features
4-
5-
### 1. Automatic Tool Exploration Mode
6-
Add an automatic tool exploration mode that generates tool memory by:
7-
- Automatically discovering and testing available tools
8-
9-
- Learning tool usage patterns and best practices
10-
11-
- Building a comprehensive tool memory database from exploration results
12-
13-
### 2. Desktop Pet Personal Assistant
14-
Build a desktop pet personal assistant with:
15-
- Interactive desktop companion interface
16-
17-
- Personalized assistance capabilities
18-
19-
- Integration with ReMe's memory system
20-
21-
### 3. Task Memory Research Implementation
22-
We are currently working on implementing features based on task memory research papers. Coming soon.
23-
24-
### 4. Mem-Agent Exploration
25-
We are exploring mem-agent to implement agentic memory pathways:
26-
- Investigating agent-driven memory management
27-
28-
- Developing autonomous memory retrieval and storage mechanisms
29-
30-
- Building more intelligent memory update strategies
31-
3+
- [ ] P0 ReMe documentation style migration: Recommend using the same doc and jupyter structure as Agentscope Runtime @jiaji
4+
- [ ] P0 ReMe integration with agentscope Personal/Task/Tool @jinli
5+
- [ ] P0 ReMe sample library examples [show case](https://github.com/agentscope-ai/agentscope-samples/tree/main/functionality/long_term_memory_mem0)
6+
- [ ] P0 Decouple flowllm dependencies
7+
- [ ] P0 ReMe support for import, improve code documentation
8+
- [ ] P1 ReMe integration with asio tool_memory
9+
- [ ] P2 ReMe integration with agentscope-Runtime tool_memory
10+
11+
- [ ] P0 Task Memory Research Paper @zhoyin
12+
13+
- [ ] P1 Context interface definition
14+
15+
- [ ] P2 Database layer interface unification
16+
- [ ] P2 Automatic Tool Exploration Mode
17+
- [ ] P2 Mem-Agent Exploration
18+
- [ ] P2 Desktop Pet Personal Assistant

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "reme_ai"
7-
version = "0.1.10"
7+
version = "0.1.10.1"
88
description = "Remember me"
99
authors = [
1010
{ name = "jinli.yl", email = "[email protected]" },
@@ -24,7 +24,7 @@ classifiers = [
2424
keywords = ["llm", "memory", "experience", "memoryscope", "ai", "mcp", "http"]
2525

2626
dependencies = [
27-
"flowllm>=0.1.11.1",
27+
"flowllm[reme]>=0.1.11.2",
2828
]
2929

3030
[tool.setuptools.packages.find]

reme_ai/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
from . import summary
1212
from . import vector_store
1313

14-
__version__ = "0.1.10"
14+
__version__ = "0.1.10.1"

0 commit comments

Comments
 (0)