trace-memory 1.0.6__tar.gz → 1.0.7__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.
- {trace_memory-1.0.6/trace_memory.egg-info → trace_memory-1.0.7}/PKG-INFO +2 -1
- {trace_memory-1.0.6 → trace_memory-1.0.7}/pyproject.toml +2 -1
- {trace_memory-1.0.6 → trace_memory-1.0.7}/trace_memory/__init__.py +2 -2
- {trace_memory-1.0.6 → trace_memory-1.0.7/trace_memory.egg-info}/PKG-INFO +2 -1
- {trace_memory-1.0.6 → trace_memory-1.0.7}/LICENSE +0 -0
- {trace_memory-1.0.6 → trace_memory-1.0.7}/NOTICE +0 -0
- {trace_memory-1.0.6 → trace_memory-1.0.7}/README.md +0 -0
- {trace_memory-1.0.6 → trace_memory-1.0.7}/setup.cfg +0 -0
- {trace_memory-1.0.6 → trace_memory-1.0.7}/trace_memory/_llm_utils.py +0 -0
- {trace_memory-1.0.6 → trace_memory-1.0.7}/trace_memory/ctree.py +0 -0
- {trace_memory-1.0.6 → trace_memory-1.0.7}/trace_memory/prompt_synthesizer.py +0 -0
- {trace_memory-1.0.6 → trace_memory-1.0.7}/trace_memory/vector_db.py +0 -0
- {trace_memory-1.0.6 → trace_memory-1.0.7}/trace_memory.egg-info/SOURCES.txt +0 -0
- {trace_memory-1.0.6 → trace_memory-1.0.7}/trace_memory.egg-info/dependency_links.txt +0 -0
- {trace_memory-1.0.6 → trace_memory-1.0.7}/trace_memory.egg-info/requires.txt +0 -0
- {trace_memory-1.0.6 → trace_memory-1.0.7}/trace_memory.egg-info/top_level.txt +0 -0
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: trace-memory
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.7
|
|
4
4
|
Summary: TRACE — Temporal Retrieval And Context Engine: self-healing hierarchical memory for LLM agents.
|
|
5
|
+
Author: Husain Ghulam
|
|
5
6
|
License: Apache-2.0
|
|
6
7
|
Project-URL: Homepage, https://github.com/husain34/TRACE
|
|
7
8
|
Project-URL: Repository, https://github.com/husain34/TRACE
|
|
@@ -4,8 +4,9 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "trace-memory"
|
|
7
|
-
version = "1.0.
|
|
7
|
+
version = "1.0.7"
|
|
8
8
|
description = "TRACE — Temporal Retrieval And Context Engine: self-healing hierarchical memory for LLM agents."
|
|
9
|
+
authors = [{ name = "Husain Ghulam" }]
|
|
9
10
|
readme = "README.md"
|
|
10
11
|
license = { text = "Apache-2.0" }
|
|
11
12
|
requires-python = ">=3.9"
|
|
@@ -25,8 +25,8 @@ from .ctree import CTree, Node, TopicNode, MessageNode
|
|
|
25
25
|
from .vector_db import VectorDatabase, ConversationVector
|
|
26
26
|
from .prompt_synthesizer import PromptSynthesizer
|
|
27
27
|
|
|
28
|
-
__version__ = "1.0.
|
|
29
|
-
__author__ = "Husain"
|
|
28
|
+
__version__ = "1.0.7"
|
|
29
|
+
__author__ = "Husain Ghulam"
|
|
30
30
|
__license__ = "Apache-2.0"
|
|
31
31
|
|
|
32
32
|
__all__ = [
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: trace-memory
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.7
|
|
4
4
|
Summary: TRACE — Temporal Retrieval And Context Engine: self-healing hierarchical memory for LLM agents.
|
|
5
|
+
Author: Husain Ghulam
|
|
5
6
|
License: Apache-2.0
|
|
6
7
|
Project-URL: Homepage, https://github.com/husain34/TRACE
|
|
7
8
|
Project-URL: Repository, https://github.com/husain34/TRACE
|
|
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
|