mem-llm 1.0.0__tar.gz → 1.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of mem-llm might be problematic. Click here for more details.
- {mem_llm-1.0.0 → mem_llm-1.0.1}/MANIFEST.in +2 -2
- {mem_llm-1.0.0/mem_llm.egg-info → mem_llm-1.0.1}/PKG-INFO +5 -5
- {mem_llm-1.0.0 → mem_llm-1.0.1}/README.md +4 -4
- {mem_llm-1.0.0/memory_llm → mem_llm-1.0.1/mem_llm}/__init__.py +1 -1
- {mem_llm-1.0.0 → mem_llm-1.0.1/mem_llm.egg-info}/PKG-INFO +5 -5
- {mem_llm-1.0.0 → mem_llm-1.0.1}/mem_llm.egg-info/SOURCES.txt +10 -10
- mem_llm-1.0.1/mem_llm.egg-info/top_level.txt +1 -0
- {mem_llm-1.0.0 → mem_llm-1.0.1}/setup.py +2 -2
- {mem_llm-1.0.0 → mem_llm-1.0.1}/tests/test_integration.py +1 -1
- {mem_llm-1.0.0 → mem_llm-1.0.1}/tests/test_llm_client.py +1 -1
- {mem_llm-1.0.0 → mem_llm-1.0.1}/tests/test_mem_agent.py +1 -1
- {mem_llm-1.0.0 → mem_llm-1.0.1}/tests/test_memory_manager.py +1 -1
- {mem_llm-1.0.0 → mem_llm-1.0.1}/tests/test_memory_tools.py +1 -1
- mem_llm-1.0.0/mem_llm.egg-info/top_level.txt +0 -1
- {mem_llm-1.0.0 → mem_llm-1.0.1}/CHANGELOG.md +0 -0
- {mem_llm-1.0.0 → mem_llm-1.0.1}/INTEGRATION_GUIDE.md +0 -0
- {mem_llm-1.0.0 → mem_llm-1.0.1}/QUICKSTART.md +0 -0
- {mem_llm-1.0.0 → mem_llm-1.0.1}/QUICKSTART_TR.md +0 -0
- {mem_llm-1.0.0 → mem_llm-1.0.1}/STRUCTURE.md +0 -0
- {mem_llm-1.0.0 → mem_llm-1.0.1}/docs/CONFIG_GUIDE.md +0 -0
- {mem_llm-1.0.0 → mem_llm-1.0.1}/docs/INDEX.md +0 -0
- {mem_llm-1.0.0 → mem_llm-1.0.1}/docs/README.md +0 -0
- {mem_llm-1.0.0/memory_llm → mem_llm-1.0.1/mem_llm}/config.yaml.example +0 -0
- {mem_llm-1.0.0/memory_llm → mem_llm-1.0.1/mem_llm}/config_manager.py +0 -0
- {mem_llm-1.0.0/memory_llm → mem_llm-1.0.1/mem_llm}/knowledge_loader.py +0 -0
- {mem_llm-1.0.0/memory_llm → mem_llm-1.0.1/mem_llm}/llm_client.py +0 -0
- {mem_llm-1.0.0/memory_llm → mem_llm-1.0.1/mem_llm}/mem_agent.py +0 -0
- {mem_llm-1.0.0/memory_llm → mem_llm-1.0.1/mem_llm}/memory_db.py +0 -0
- {mem_llm-1.0.0/memory_llm → mem_llm-1.0.1/mem_llm}/memory_manager.py +0 -0
- {mem_llm-1.0.0/memory_llm → mem_llm-1.0.1/mem_llm}/memory_tools.py +0 -0
- {mem_llm-1.0.0/memory_llm → mem_llm-1.0.1/mem_llm}/prompt_templates.py +0 -0
- {mem_llm-1.0.0 → mem_llm-1.0.1}/mem_llm.egg-info/dependency_links.txt +0 -0
- {mem_llm-1.0.0 → mem_llm-1.0.1}/mem_llm.egg-info/requires.txt +0 -0
- {mem_llm-1.0.0 → mem_llm-1.0.1}/requirements.txt +0 -0
- {mem_llm-1.0.0 → mem_llm-1.0.1}/setup.cfg +0 -0
|
@@ -5,7 +5,7 @@ include QUICKSTART.md
|
|
|
5
5
|
include QUICKSTART_TR.md
|
|
6
6
|
include INTEGRATION_GUIDE.md
|
|
7
7
|
include STRUCTURE.md
|
|
8
|
-
recursive-include
|
|
9
|
-
recursive-include
|
|
8
|
+
recursive-include mem_llm *.yaml
|
|
9
|
+
recursive-include mem_llm *.example
|
|
10
10
|
recursive-include docs *.md
|
|
11
11
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mem-llm
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.1
|
|
4
4
|
Summary: Memory-enabled AI assistant with local LLM support
|
|
5
5
|
Home-page: https://github.com/emredeveloper/Mem-LLM
|
|
6
6
|
Author: C. Emre Karataş
|
|
@@ -86,7 +86,7 @@ ollama pull granite4:tiny-h
|
|
|
86
86
|
### 3. Use Mem-Agent
|
|
87
87
|
|
|
88
88
|
```python
|
|
89
|
-
from
|
|
89
|
+
from mem_llm import MemAgent
|
|
90
90
|
|
|
91
91
|
# Create agent
|
|
92
92
|
agent = MemAgent(model="granite4:tiny-h")
|
|
@@ -150,7 +150,7 @@ Memory LLM/
|
|
|
150
150
|
### MemAgent Class
|
|
151
151
|
|
|
152
152
|
```python
|
|
153
|
-
from
|
|
153
|
+
from mem_llm import MemAgent
|
|
154
154
|
|
|
155
155
|
agent = MemAgent(
|
|
156
156
|
model="granite4:tiny-h", # Ollama model name
|
|
@@ -197,7 +197,7 @@ agent.clear_user_memory("user_id", confirm=True)
|
|
|
197
197
|
### MemoryManager Class
|
|
198
198
|
|
|
199
199
|
```python
|
|
200
|
-
from
|
|
200
|
+
from mem_llm import MemoryManager
|
|
201
201
|
|
|
202
202
|
memory = MemoryManager(memory_dir="memories")
|
|
203
203
|
|
|
@@ -222,7 +222,7 @@ results = memory.search_memory("user_id", "order")
|
|
|
222
222
|
### OllamaClient Class
|
|
223
223
|
|
|
224
224
|
```python
|
|
225
|
-
from
|
|
225
|
+
from mem_llm import OllamaClient
|
|
226
226
|
|
|
227
227
|
client = OllamaClient(model="granite4:tiny-h")
|
|
228
228
|
|
|
@@ -45,7 +45,7 @@ ollama pull granite4:tiny-h
|
|
|
45
45
|
### 3. Use Mem-Agent
|
|
46
46
|
|
|
47
47
|
```python
|
|
48
|
-
from
|
|
48
|
+
from mem_llm import MemAgent
|
|
49
49
|
|
|
50
50
|
# Create agent
|
|
51
51
|
agent = MemAgent(model="granite4:tiny-h")
|
|
@@ -109,7 +109,7 @@ Memory LLM/
|
|
|
109
109
|
### MemAgent Class
|
|
110
110
|
|
|
111
111
|
```python
|
|
112
|
-
from
|
|
112
|
+
from mem_llm import MemAgent
|
|
113
113
|
|
|
114
114
|
agent = MemAgent(
|
|
115
115
|
model="granite4:tiny-h", # Ollama model name
|
|
@@ -156,7 +156,7 @@ agent.clear_user_memory("user_id", confirm=True)
|
|
|
156
156
|
### MemoryManager Class
|
|
157
157
|
|
|
158
158
|
```python
|
|
159
|
-
from
|
|
159
|
+
from mem_llm import MemoryManager
|
|
160
160
|
|
|
161
161
|
memory = MemoryManager(memory_dir="memories")
|
|
162
162
|
|
|
@@ -181,7 +181,7 @@ results = memory.search_memory("user_id", "order")
|
|
|
181
181
|
### OllamaClient Class
|
|
182
182
|
|
|
183
183
|
```python
|
|
184
|
-
from
|
|
184
|
+
from mem_llm import OllamaClient
|
|
185
185
|
|
|
186
186
|
client = OllamaClient(model="granite4:tiny-h")
|
|
187
187
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mem-llm
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.1
|
|
4
4
|
Summary: Memory-enabled AI assistant with local LLM support
|
|
5
5
|
Home-page: https://github.com/emredeveloper/Mem-LLM
|
|
6
6
|
Author: C. Emre Karataş
|
|
@@ -86,7 +86,7 @@ ollama pull granite4:tiny-h
|
|
|
86
86
|
### 3. Use Mem-Agent
|
|
87
87
|
|
|
88
88
|
```python
|
|
89
|
-
from
|
|
89
|
+
from mem_llm import MemAgent
|
|
90
90
|
|
|
91
91
|
# Create agent
|
|
92
92
|
agent = MemAgent(model="granite4:tiny-h")
|
|
@@ -150,7 +150,7 @@ Memory LLM/
|
|
|
150
150
|
### MemAgent Class
|
|
151
151
|
|
|
152
152
|
```python
|
|
153
|
-
from
|
|
153
|
+
from mem_llm import MemAgent
|
|
154
154
|
|
|
155
155
|
agent = MemAgent(
|
|
156
156
|
model="granite4:tiny-h", # Ollama model name
|
|
@@ -197,7 +197,7 @@ agent.clear_user_memory("user_id", confirm=True)
|
|
|
197
197
|
### MemoryManager Class
|
|
198
198
|
|
|
199
199
|
```python
|
|
200
|
-
from
|
|
200
|
+
from mem_llm import MemoryManager
|
|
201
201
|
|
|
202
202
|
memory = MemoryManager(memory_dir="memories")
|
|
203
203
|
|
|
@@ -222,7 +222,7 @@ results = memory.search_memory("user_id", "order")
|
|
|
222
222
|
### OllamaClient Class
|
|
223
223
|
|
|
224
224
|
```python
|
|
225
|
-
from
|
|
225
|
+
from mem_llm import OllamaClient
|
|
226
226
|
|
|
227
227
|
client = OllamaClient(model="granite4:tiny-h")
|
|
228
228
|
|
|
@@ -10,21 +10,21 @@ setup.py
|
|
|
10
10
|
docs/CONFIG_GUIDE.md
|
|
11
11
|
docs/INDEX.md
|
|
12
12
|
docs/README.md
|
|
13
|
+
mem_llm/__init__.py
|
|
14
|
+
mem_llm/config.yaml.example
|
|
15
|
+
mem_llm/config_manager.py
|
|
16
|
+
mem_llm/knowledge_loader.py
|
|
17
|
+
mem_llm/llm_client.py
|
|
18
|
+
mem_llm/mem_agent.py
|
|
19
|
+
mem_llm/memory_db.py
|
|
20
|
+
mem_llm/memory_manager.py
|
|
21
|
+
mem_llm/memory_tools.py
|
|
22
|
+
mem_llm/prompt_templates.py
|
|
13
23
|
mem_llm.egg-info/PKG-INFO
|
|
14
24
|
mem_llm.egg-info/SOURCES.txt
|
|
15
25
|
mem_llm.egg-info/dependency_links.txt
|
|
16
26
|
mem_llm.egg-info/requires.txt
|
|
17
27
|
mem_llm.egg-info/top_level.txt
|
|
18
|
-
memory_llm/__init__.py
|
|
19
|
-
memory_llm/config.yaml.example
|
|
20
|
-
memory_llm/config_manager.py
|
|
21
|
-
memory_llm/knowledge_loader.py
|
|
22
|
-
memory_llm/llm_client.py
|
|
23
|
-
memory_llm/mem_agent.py
|
|
24
|
-
memory_llm/memory_db.py
|
|
25
|
-
memory_llm/memory_manager.py
|
|
26
|
-
memory_llm/memory_tools.py
|
|
27
|
-
memory_llm/prompt_templates.py
|
|
28
28
|
tests/test_integration.py
|
|
29
29
|
tests/test_llm_client.py
|
|
30
30
|
tests/test_mem_agent.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
mem_llm
|
|
@@ -11,7 +11,7 @@ long_description = (this_directory / "README.md").read_text(encoding='utf-8')
|
|
|
11
11
|
|
|
12
12
|
setup(
|
|
13
13
|
name="mem-llm",
|
|
14
|
-
version="1.0.
|
|
14
|
+
version="1.0.1",
|
|
15
15
|
author="C. Emre Karataş",
|
|
16
16
|
author_email="karatasqemre@gmail.com", # PyPI için gerekli - kendi emailinizi yazın
|
|
17
17
|
description="Memory-enabled AI assistant with local LLM support",
|
|
@@ -45,7 +45,7 @@ setup(
|
|
|
45
45
|
},
|
|
46
46
|
include_package_data=True,
|
|
47
47
|
package_data={
|
|
48
|
-
'
|
|
48
|
+
'mem_llm': ['config.yaml.example'],
|
|
49
49
|
},
|
|
50
50
|
keywords="llm ai memory agent chatbot ollama local",
|
|
51
51
|
project_urls={
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
memory_llm
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|