loregpt 0.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.
@@ -0,0 +1,50 @@
1
+ # --- Go ---
2
+ /bin/
3
+ *.exe
4
+ *.test
5
+ *.out
6
+ vendor/
7
+
8
+ # --- Node / TypeScript ---
9
+ node_modules/
10
+ dist/
11
+ build/
12
+ *.tsbuildinfo
13
+ .pnpm-store/
14
+ npm-debug.log*
15
+ pnpm-debug.log*
16
+
17
+ # --- Python ---
18
+ __pycache__/
19
+ *.py[cod]
20
+ .venv/
21
+ venv/
22
+ .uv/
23
+ *.egg-info/
24
+ .pytest_cache/
25
+ .ruff_cache/
26
+ .mypy_cache/
27
+
28
+ # --- Env / secrets (never commit) ---
29
+ .env
30
+ .env.*
31
+ !.env.example
32
+ *.pem
33
+ *.key
34
+
35
+ # --- Infra / local data ---
36
+ /data/
37
+ *.sqlite
38
+ docker-compose.override.yml
39
+
40
+ # --- Editors / OS ---
41
+ .idea/
42
+ .vscode/
43
+ *.swp
44
+ .DS_Store
45
+ Thumbs.db
46
+
47
+ # --- Coverage / tmp ---
48
+ coverage/
49
+ *.log
50
+ /tmp/
loregpt-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,38 @@
1
+ Metadata-Version: 2.4
2
+ Name: loregpt
3
+ Version: 0.0.1
4
+ Summary: Python SDK for Lore — the coordination memory layer for multi-agent AI systems. Placeholder release; the real API lands with Lore v0.1.
5
+ Project-URL: Homepage, https://loregpt.ai
6
+ Project-URL: Repository, https://github.com/loregpt/lore
7
+ Project-URL: Issues, https://github.com/loregpt/lore/issues
8
+ Author: The LoreGPT Authors
9
+ License-Expression: Apache-2.0
10
+ Keywords: agents,ai,context,coordination,llm,mcp,memory,multi-agent
11
+ Classifier: Development Status :: 1 - Planning
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Topic :: Software Development :: Libraries
15
+ Requires-Python: >=3.9
16
+ Description-Content-Type: text/markdown
17
+
18
+ # loregpt
19
+
20
+ Python SDK for **[Lore](https://github.com/loregpt/lore)** — the open-source coordination memory layer
21
+ for multi-agent AI systems.
22
+
23
+ > 🚧 **Placeholder release (0.0.1).** The real SDK lands with Lore `v0.1`. This package reserves the name
24
+ > and points you to the project.
25
+
26
+ ```python
27
+ # Coming in v0.1:
28
+ lore = LoreClient(api_key=...)
29
+ res = lore.write(run_id=run_id, agent_id="researcher", content="…")
30
+ pack = lore.pack(query="…", scopes={"team": "platform"}, min_seq=res.seq, token_budget=2000)
31
+ pack.covered_seq # read-your-writes, guaranteed
32
+ pack.saved_tokens # token savings meter
33
+ ```
34
+
35
+ - Website & waitlist: **https://loregpt.ai**
36
+ - Source & RFCs: **https://github.com/loregpt/lore**
37
+
38
+ License: Apache-2.0
@@ -0,0 +1,21 @@
1
+ # loregpt
2
+
3
+ Python SDK for **[Lore](https://github.com/loregpt/lore)** — the open-source coordination memory layer
4
+ for multi-agent AI systems.
5
+
6
+ > 🚧 **Placeholder release (0.0.1).** The real SDK lands with Lore `v0.1`. This package reserves the name
7
+ > and points you to the project.
8
+
9
+ ```python
10
+ # Coming in v0.1:
11
+ lore = LoreClient(api_key=...)
12
+ res = lore.write(run_id=run_id, agent_id="researcher", content="…")
13
+ pack = lore.pack(query="…", scopes={"team": "platform"}, min_seq=res.seq, token_budget=2000)
14
+ pack.covered_seq # read-your-writes, guaranteed
15
+ pack.saved_tokens # token savings meter
16
+ ```
17
+
18
+ - Website & waitlist: **https://loregpt.ai**
19
+ - Source & RFCs: **https://github.com/loregpt/lore**
20
+
21
+ License: Apache-2.0
@@ -0,0 +1,9 @@
1
+ """Lore — the coordination memory layer for multi-agent AI systems.
2
+
3
+ Placeholder release (0.0.1). The real SDK (``LoreClient``: write / recall / pack, with the
4
+ read-your-writes ``seq`` contract) lands with Lore v0.1.
5
+
6
+ Track progress: https://loregpt.ai · https://github.com/loregpt/lore
7
+ """
8
+
9
+ __version__ = "0.0.1"
@@ -0,0 +1,27 @@
1
+ [project]
2
+ name = "loregpt"
3
+ version = "0.0.1"
4
+ description = "Python SDK for Lore — the coordination memory layer for multi-agent AI systems. Placeholder release; the real API lands with Lore v0.1."
5
+ readme = "README.md"
6
+ requires-python = ">=3.9"
7
+ license = "Apache-2.0"
8
+ authors = [{ name = "The LoreGPT Authors" }]
9
+ keywords = ["ai", "agents", "multi-agent", "memory", "llm", "mcp", "coordination", "context"]
10
+ classifiers = [
11
+ "Development Status :: 1 - Planning",
12
+ "Programming Language :: Python :: 3",
13
+ "Intended Audience :: Developers",
14
+ "Topic :: Software Development :: Libraries",
15
+ ]
16
+
17
+ [project.urls]
18
+ Homepage = "https://loregpt.ai"
19
+ Repository = "https://github.com/loregpt/lore"
20
+ Issues = "https://github.com/loregpt/lore/issues"
21
+
22
+ [build-system]
23
+ requires = ["hatchling"]
24
+ build-backend = "hatchling.build"
25
+
26
+ [tool.hatch.build.targets.wheel]
27
+ packages = ["loregpt"]