loregpt 0.0.1__py3-none-any.whl
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.
- loregpt/__init__.py +9 -0
- loregpt-0.0.1.dist-info/METADATA +38 -0
- loregpt-0.0.1.dist-info/RECORD +4 -0
- loregpt-0.0.1.dist-info/WHEEL +4 -0
loregpt/__init__.py
ADDED
|
@@ -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,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,4 @@
|
|
|
1
|
+
loregpt/__init__.py,sha256=gHOl9lPQRRHbxvKknkTRrEDcgJUm5SjHJd6iMJl5nA4,319
|
|
2
|
+
loregpt-0.0.1.dist-info/METADATA,sha256=uGyHQpdeiiVU8utp9dG6XGmnImZQ4gLE_vm1Pa3_pCs,1468
|
|
3
|
+
loregpt-0.0.1.dist-info/WHEEL,sha256=lCkmxWfQsSc9CfIClYeavTdQeEX2toPqufh9gI35EQA,87
|
|
4
|
+
loregpt-0.0.1.dist-info/RECORD,,
|