cortexlayer 0.1.0__tar.gz → 0.1.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.
- {cortexlayer-0.1.0/src/cortexlayer.egg-info → cortexlayer-0.1.1}/PKG-INFO +8 -4
- {cortexlayer-0.1.0 → cortexlayer-0.1.1}/README.md +4 -3
- {cortexlayer-0.1.0 → cortexlayer-0.1.1}/pyproject.toml +5 -0
- cortexlayer-0.1.1/src/cortexlayer/_version.py +1 -0
- {cortexlayer-0.1.0 → cortexlayer-0.1.1/src/cortexlayer.egg-info}/PKG-INFO +8 -4
- cortexlayer-0.1.0/src/cortexlayer/_version.py +0 -1
- {cortexlayer-0.1.0 → cortexlayer-0.1.1}/LICENSE +0 -0
- {cortexlayer-0.1.0 → cortexlayer-0.1.1}/NOTICE +0 -0
- {cortexlayer-0.1.0 → cortexlayer-0.1.1}/setup.cfg +0 -0
- {cortexlayer-0.1.0 → cortexlayer-0.1.1}/src/cortexlayer/__init__.py +0 -0
- {cortexlayer-0.1.0 → cortexlayer-0.1.1}/src/cortexlayer/_engine/__init__.py +0 -0
- {cortexlayer-0.1.0 → cortexlayer-0.1.1}/src/cortexlayer/_engine/compression.py +0 -0
- {cortexlayer-0.1.0 → cortexlayer-0.1.1}/src/cortexlayer/_engine/facts/__init__.py +0 -0
- {cortexlayer-0.1.0 → cortexlayer-0.1.1}/src/cortexlayer/_engine/facts/additive_extraction_prompt.txt +0 -0
- {cortexlayer-0.1.0 → cortexlayer-0.1.1}/src/cortexlayer/_engine/facts/backends.py +0 -0
- {cortexlayer-0.1.0 → cortexlayer-0.1.1}/src/cortexlayer/_engine/facts/engine.py +0 -0
- {cortexlayer-0.1.0 → cortexlayer-0.1.1}/src/cortexlayer/_engine/facts/entities.py +0 -0
- {cortexlayer-0.1.0 → cortexlayer-0.1.1}/src/cortexlayer/_engine/facts/prompts.py +0 -0
- {cortexlayer-0.1.0 → cortexlayer-0.1.1}/src/cortexlayer/_engine/facts/scoring.py +0 -0
- {cortexlayer-0.1.0 → cortexlayer-0.1.1}/src/cortexlayer/_engine/ingestion.py +0 -0
- {cortexlayer-0.1.0 → cortexlayer-0.1.1}/src/cortexlayer/_engine/linking.py +0 -0
- {cortexlayer-0.1.0 → cortexlayer-0.1.1}/src/cortexlayer/_engine/nlp.py +0 -0
- {cortexlayer-0.1.0 → cortexlayer-0.1.1}/src/cortexlayer/_engine/retrieval.py +0 -0
- {cortexlayer-0.1.0 → cortexlayer-0.1.1}/src/cortexlayer/_engine/shaping.py +0 -0
- {cortexlayer-0.1.0 → cortexlayer-0.1.1}/src/cortexlayer/_engine/storage.py +0 -0
- {cortexlayer-0.1.0 → cortexlayer-0.1.1}/src/cortexlayer/_validate.py +0 -0
- {cortexlayer-0.1.0 → cortexlayer-0.1.1}/src/cortexlayer/client.py +0 -0
- {cortexlayer-0.1.0 → cortexlayer-0.1.1}/src/cortexlayer/errors.py +0 -0
- {cortexlayer-0.1.0 → cortexlayer-0.1.1}/src/cortexlayer/memory.py +0 -0
- {cortexlayer-0.1.0 → cortexlayer-0.1.1}/src/cortexlayer/py.typed +0 -0
- {cortexlayer-0.1.0 → cortexlayer-0.1.1}/src/cortexlayer/types.py +0 -0
- {cortexlayer-0.1.0 → cortexlayer-0.1.1}/src/cortexlayer.egg-info/SOURCES.txt +0 -0
- {cortexlayer-0.1.0 → cortexlayer-0.1.1}/src/cortexlayer.egg-info/dependency_links.txt +0 -0
- {cortexlayer-0.1.0 → cortexlayer-0.1.1}/src/cortexlayer.egg-info/requires.txt +0 -0
- {cortexlayer-0.1.0 → cortexlayer-0.1.1}/src/cortexlayer.egg-info/top_level.txt +0 -0
- {cortexlayer-0.1.0 → cortexlayer-0.1.1}/tests/test_client.py +0 -0
- {cortexlayer-0.1.0 → cortexlayer-0.1.1}/tests/test_memory.py +0 -0
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cortexlayer
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: Cortex: a memory layer for AI agents (linked pages + link-expansion retrieval) — hosted client and embedded engine.
|
|
5
5
|
License-Expression: Apache-2.0
|
|
6
|
+
Project-URL: Homepage, https://github.com/mikeest1972/cortexlayer-python
|
|
7
|
+
Project-URL: Repository, https://github.com/mikeest1972/cortexlayer-python
|
|
8
|
+
Project-URL: Issues, https://github.com/mikeest1972/cortexlayer-python/issues
|
|
6
9
|
Keywords: memory,agents,llm,mcp,rag,cortex
|
|
7
10
|
Classifier: Development Status :: 3 - Alpha
|
|
8
11
|
Classifier: Intended Audience :: Developers
|
|
@@ -38,9 +41,10 @@ Two ways to use it, with the same method names and result types:
|
|
|
38
41
|
|
|
39
42
|
Python 3.10+. The client needs only `httpx`; the embedded engine adds Chroma and spaCy.
|
|
40
43
|
|
|
41
|
-
> **Status: 0.1 (alpha),
|
|
42
|
-
> and `facts` (Mem0-style LLM fact extraction; see
|
|
43
|
-
> its `facts` backend is `Memory(backend="facts")`,
|
|
44
|
+
> **Status: 0.1 (alpha), on PyPI as [`cortexlayer`](https://pypi.org/project/cortexlayer/).** Local
|
|
45
|
+
> `Memory` has two engines: `raw` (default, no LLM) and `facts` (Mem0-style LLM fact extraction; see
|
|
46
|
+
> below). The Cortex server runs on this same library: its `facts` backend is `Memory(backend="facts")`,
|
|
47
|
+
> and it no longer depends on the `mem0ai` package. Source: [GitHub](https://github.com/mikeest1972/cortexlayer-python).
|
|
44
48
|
|
|
45
49
|
## Quickstart: embedded (`Memory`)
|
|
46
50
|
|
|
@@ -13,9 +13,10 @@ Two ways to use it, with the same method names and result types:
|
|
|
13
13
|
|
|
14
14
|
Python 3.10+. The client needs only `httpx`; the embedded engine adds Chroma and spaCy.
|
|
15
15
|
|
|
16
|
-
> **Status: 0.1 (alpha),
|
|
17
|
-
> and `facts` (Mem0-style LLM fact extraction; see
|
|
18
|
-
> its `facts` backend is `Memory(backend="facts")`,
|
|
16
|
+
> **Status: 0.1 (alpha), on PyPI as [`cortexlayer`](https://pypi.org/project/cortexlayer/).** Local
|
|
17
|
+
> `Memory` has two engines: `raw` (default, no LLM) and `facts` (Mem0-style LLM fact extraction; see
|
|
18
|
+
> below). The Cortex server runs on this same library: its `facts` backend is `Memory(backend="facts")`,
|
|
19
|
+
> and it no longer depends on the `mem0ai` package. Source: [GitHub](https://github.com/mikeest1972/cortexlayer-python).
|
|
19
20
|
|
|
20
21
|
## Quickstart: embedded (`Memory`)
|
|
21
22
|
|
|
@@ -20,6 +20,11 @@ classifiers = [
|
|
|
20
20
|
"Typing :: Typed",
|
|
21
21
|
]
|
|
22
22
|
|
|
23
|
+
[project.urls]
|
|
24
|
+
Homepage = "https://github.com/mikeest1972/cortexlayer-python"
|
|
25
|
+
Repository = "https://github.com/mikeest1972/cortexlayer-python"
|
|
26
|
+
Issues = "https://github.com/mikeest1972/cortexlayer-python/issues"
|
|
27
|
+
|
|
23
28
|
[project.optional-dependencies]
|
|
24
29
|
# The embedded engine (`Memory`): Chroma vector store + spaCy entity extraction.
|
|
25
30
|
local = ["chromadb>=1.0", "spacy>=3.7"]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.1.1"
|
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cortexlayer
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: Cortex: a memory layer for AI agents (linked pages + link-expansion retrieval) — hosted client and embedded engine.
|
|
5
5
|
License-Expression: Apache-2.0
|
|
6
|
+
Project-URL: Homepage, https://github.com/mikeest1972/cortexlayer-python
|
|
7
|
+
Project-URL: Repository, https://github.com/mikeest1972/cortexlayer-python
|
|
8
|
+
Project-URL: Issues, https://github.com/mikeest1972/cortexlayer-python/issues
|
|
6
9
|
Keywords: memory,agents,llm,mcp,rag,cortex
|
|
7
10
|
Classifier: Development Status :: 3 - Alpha
|
|
8
11
|
Classifier: Intended Audience :: Developers
|
|
@@ -38,9 +41,10 @@ Two ways to use it, with the same method names and result types:
|
|
|
38
41
|
|
|
39
42
|
Python 3.10+. The client needs only `httpx`; the embedded engine adds Chroma and spaCy.
|
|
40
43
|
|
|
41
|
-
> **Status: 0.1 (alpha),
|
|
42
|
-
> and `facts` (Mem0-style LLM fact extraction; see
|
|
43
|
-
> its `facts` backend is `Memory(backend="facts")`,
|
|
44
|
+
> **Status: 0.1 (alpha), on PyPI as [`cortexlayer`](https://pypi.org/project/cortexlayer/).** Local
|
|
45
|
+
> `Memory` has two engines: `raw` (default, no LLM) and `facts` (Mem0-style LLM fact extraction; see
|
|
46
|
+
> below). The Cortex server runs on this same library: its `facts` backend is `Memory(backend="facts")`,
|
|
47
|
+
> and it no longer depends on the `mem0ai` package. Source: [GitHub](https://github.com/mikeest1972/cortexlayer-python).
|
|
44
48
|
|
|
45
49
|
## Quickstart: embedded (`Memory`)
|
|
46
50
|
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.1.0"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cortexlayer-0.1.0 → cortexlayer-0.1.1}/src/cortexlayer/_engine/facts/additive_extraction_prompt.txt
RENAMED
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|