agentledger-postgres 1.2.0__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.
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
from agentledger.storage_postgres import POSTGRES_SCHEMA_SQL, PostgresDependencyMissing, PostgresStore, PostgresStoreConfig
|
|
2
|
+
|
|
3
|
+
__version__ = "1.2.0"
|
|
4
|
+
|
|
5
|
+
__all__ = [
|
|
6
|
+
"POSTGRES_SCHEMA_SQL",
|
|
7
|
+
"PostgresDependencyMissing",
|
|
8
|
+
"PostgresStore",
|
|
9
|
+
"PostgresStoreConfig",
|
|
10
|
+
"__version__",
|
|
11
|
+
]
|
|
12
|
+
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: agentledger-postgres
|
|
3
|
+
Version: 1.2.0
|
|
4
|
+
Summary: Postgres StateStore adapter package for AgentLedger
|
|
5
|
+
Project-URL: Homepage, https://github.com/yaogdu/AgentLedger
|
|
6
|
+
Project-URL: Repository, https://github.com/yaogdu/AgentLedger
|
|
7
|
+
Project-URL: Documentation, https://github.com/yaogdu/AgentLedger/tree/main/docs
|
|
8
|
+
Project-URL: Issues, https://github.com/yaogdu/AgentLedger/issues
|
|
9
|
+
Author: AgentLedger Contributors
|
|
10
|
+
License: Apache-2.0
|
|
11
|
+
Keywords: agents,postgres,runtime,state-store
|
|
12
|
+
Requires-Python: >=3.11
|
|
13
|
+
Requires-Dist: agentledger-runtime<2,>=1.2
|
|
14
|
+
Requires-Dist: psycopg[binary]>=3.1
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# agentledger-postgres
|
|
18
|
+
|
|
19
|
+
Postgres StateStore adapter package for AgentLedger.
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
pip install agentledger-postgres
|
|
23
|
+
pip install "agentledger-runtime[postgres]"
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
```python
|
|
27
|
+
from agentledger_postgres import PostgresStore, PostgresStoreConfig
|
|
28
|
+
|
|
29
|
+
store = PostgresStore(PostgresStoreConfig.from_env())
|
|
30
|
+
store.init()
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
This package keeps the runtime core dependency-light while making Postgres an explicit opt-in. It re-exports the stable adapter classes from `agentledger.storage_postgres` in the `1.2.x` line.
|
|
34
|
+
|
|
35
|
+
Certification:
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
python3 -m agentledger adapter certify --kind postgres --adapter-version 1.2.0
|
|
39
|
+
```
|
|
40
|
+
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
agentledger_postgres/__init__.py,sha256=MeotFY3NLzbyXwKvPM73NsDsKbBJ_oBd64AKshgrjdo,290
|
|
2
|
+
agentledger_postgres-1.2.0.dist-info/METADATA,sha256=3yErHObR_IHTuIPwbIh4giHzZqskY2VdzfiepUXjIlk,1260
|
|
3
|
+
agentledger_postgres-1.2.0.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
|
|
4
|
+
agentledger_postgres-1.2.0.dist-info/RECORD,,
|