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.

Files changed (35) hide show
  1. {mem_llm-1.0.0 → mem_llm-1.0.1}/MANIFEST.in +2 -2
  2. {mem_llm-1.0.0/mem_llm.egg-info → mem_llm-1.0.1}/PKG-INFO +5 -5
  3. {mem_llm-1.0.0 → mem_llm-1.0.1}/README.md +4 -4
  4. {mem_llm-1.0.0/memory_llm → mem_llm-1.0.1/mem_llm}/__init__.py +1 -1
  5. {mem_llm-1.0.0 → mem_llm-1.0.1/mem_llm.egg-info}/PKG-INFO +5 -5
  6. {mem_llm-1.0.0 → mem_llm-1.0.1}/mem_llm.egg-info/SOURCES.txt +10 -10
  7. mem_llm-1.0.1/mem_llm.egg-info/top_level.txt +1 -0
  8. {mem_llm-1.0.0 → mem_llm-1.0.1}/setup.py +2 -2
  9. {mem_llm-1.0.0 → mem_llm-1.0.1}/tests/test_integration.py +1 -1
  10. {mem_llm-1.0.0 → mem_llm-1.0.1}/tests/test_llm_client.py +1 -1
  11. {mem_llm-1.0.0 → mem_llm-1.0.1}/tests/test_mem_agent.py +1 -1
  12. {mem_llm-1.0.0 → mem_llm-1.0.1}/tests/test_memory_manager.py +1 -1
  13. {mem_llm-1.0.0 → mem_llm-1.0.1}/tests/test_memory_tools.py +1 -1
  14. mem_llm-1.0.0/mem_llm.egg-info/top_level.txt +0 -1
  15. {mem_llm-1.0.0 → mem_llm-1.0.1}/CHANGELOG.md +0 -0
  16. {mem_llm-1.0.0 → mem_llm-1.0.1}/INTEGRATION_GUIDE.md +0 -0
  17. {mem_llm-1.0.0 → mem_llm-1.0.1}/QUICKSTART.md +0 -0
  18. {mem_llm-1.0.0 → mem_llm-1.0.1}/QUICKSTART_TR.md +0 -0
  19. {mem_llm-1.0.0 → mem_llm-1.0.1}/STRUCTURE.md +0 -0
  20. {mem_llm-1.0.0 → mem_llm-1.0.1}/docs/CONFIG_GUIDE.md +0 -0
  21. {mem_llm-1.0.0 → mem_llm-1.0.1}/docs/INDEX.md +0 -0
  22. {mem_llm-1.0.0 → mem_llm-1.0.1}/docs/README.md +0 -0
  23. {mem_llm-1.0.0/memory_llm → mem_llm-1.0.1/mem_llm}/config.yaml.example +0 -0
  24. {mem_llm-1.0.0/memory_llm → mem_llm-1.0.1/mem_llm}/config_manager.py +0 -0
  25. {mem_llm-1.0.0/memory_llm → mem_llm-1.0.1/mem_llm}/knowledge_loader.py +0 -0
  26. {mem_llm-1.0.0/memory_llm → mem_llm-1.0.1/mem_llm}/llm_client.py +0 -0
  27. {mem_llm-1.0.0/memory_llm → mem_llm-1.0.1/mem_llm}/mem_agent.py +0 -0
  28. {mem_llm-1.0.0/memory_llm → mem_llm-1.0.1/mem_llm}/memory_db.py +0 -0
  29. {mem_llm-1.0.0/memory_llm → mem_llm-1.0.1/mem_llm}/memory_manager.py +0 -0
  30. {mem_llm-1.0.0/memory_llm → mem_llm-1.0.1/mem_llm}/memory_tools.py +0 -0
  31. {mem_llm-1.0.0/memory_llm → mem_llm-1.0.1/mem_llm}/prompt_templates.py +0 -0
  32. {mem_llm-1.0.0 → mem_llm-1.0.1}/mem_llm.egg-info/dependency_links.txt +0 -0
  33. {mem_llm-1.0.0 → mem_llm-1.0.1}/mem_llm.egg-info/requires.txt +0 -0
  34. {mem_llm-1.0.0 → mem_llm-1.0.1}/requirements.txt +0 -0
  35. {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 memory_llm *.yaml
9
- recursive-include memory_llm *.example
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.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 memory_llm import MemAgent
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 memory_llm import MemAgent
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 memory_llm import MemoryManager
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 memory_llm import OllamaClient
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 memory_llm import MemAgent
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 memory_llm import MemAgent
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 memory_llm import MemoryManager
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 memory_llm import OllamaClient
184
+ from mem_llm import OllamaClient
185
185
 
186
186
  client = OllamaClient(model="granite4:tiny-h")
187
187
 
@@ -23,7 +23,7 @@ try:
23
23
  except ImportError:
24
24
  __all_pro__ = []
25
25
 
26
- __version__ = "1.0.0"
26
+ __version__ = "1.0.1"
27
27
  __author__ = "C. Emre Karataş"
28
28
 
29
29
  __all__ = [
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mem-llm
3
- Version: 1.0.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 memory_llm import MemAgent
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 memory_llm import MemAgent
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 memory_llm import MemoryManager
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 memory_llm import OllamaClient
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.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
- 'memory_llm': ['config.yaml.example'],
48
+ 'mem_llm': ['config.yaml.example'],
49
49
  },
50
50
  keywords="llm ai memory agent chatbot ollama local",
51
51
  project_urls={
@@ -8,7 +8,7 @@ import tempfile
8
8
  import shutil
9
9
 
10
10
  # Import all modules
11
- from memory_llm import (
11
+ from mem_llm import (
12
12
  MemAgent,
13
13
  MemoryManager,
14
14
  SQLMemoryManager,
@@ -4,7 +4,7 @@ LLM Client Specific Tests
4
4
 
5
5
  import unittest
6
6
 
7
- from memory_llm import OllamaClient
7
+ from mem_llm import OllamaClient
8
8
 
9
9
 
10
10
  class TestLLMClient(unittest.TestCase):
@@ -10,7 +10,7 @@ import time
10
10
  import shutil
11
11
 
12
12
  # Test edilecek modüller
13
- from memory_llm import MemAgent, MemoryManager, OllamaClient
13
+ from mem_llm import MemAgent, MemoryManager, OllamaClient
14
14
 
15
15
 
16
16
  class TestMemAgent(unittest.TestCase):
@@ -6,7 +6,7 @@ import unittest
6
6
  import tempfile
7
7
  import shutil
8
8
 
9
- from memory_llm import MemoryManager
9
+ from mem_llm import MemoryManager
10
10
 
11
11
 
12
12
  class TestMemoryManager(unittest.TestCase):
@@ -6,7 +6,7 @@ import unittest
6
6
  import tempfile
7
7
  import shutil
8
8
 
9
- from memory_llm import MemoryManager, MemoryTools
9
+ from mem_llm import MemoryManager, MemoryTools
10
10
 
11
11
 
12
12
  class TestMemoryTools(unittest.TestCase):
@@ -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