amfs-adapter-postgres 0.2.2__tar.gz → 0.2.4__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.
Files changed (17) hide show
  1. {amfs_adapter_postgres-0.2.2 → amfs_adapter_postgres-0.2.4}/PKG-INFO +2 -2
  2. {amfs_adapter_postgres-0.2.2 → amfs_adapter_postgres-0.2.4}/pyproject.toml +2 -2
  3. {amfs_adapter_postgres-0.2.2 → amfs_adapter_postgres-0.2.4}/.gitignore +0 -0
  4. {amfs_adapter_postgres-0.2.2 → amfs_adapter_postgres-0.2.4}/src/amfs_postgres/__init__.py +0 -0
  5. {amfs_adapter_postgres-0.2.2 → amfs_adapter_postgres-0.2.4}/src/amfs_postgres/_fts.py +0 -0
  6. {amfs_adapter_postgres-0.2.2 → amfs_adapter_postgres-0.2.4}/src/amfs_postgres/adapter.py +0 -0
  7. {amfs_adapter_postgres-0.2.2 → amfs_adapter_postgres-0.2.4}/src/amfs_postgres/async_adapter.py +0 -0
  8. {amfs_adapter_postgres-0.2.2 → amfs_adapter_postgres-0.2.4}/src/amfs_postgres/migrations/001_initial.sql +0 -0
  9. {amfs_adapter_postgres-0.2.2 → amfs_adapter_postgres-0.2.4}/src/amfs_postgres/migrations/002_artifact_refs.sql +0 -0
  10. {amfs_adapter_postgres-0.2.2 → amfs_adapter_postgres-0.2.4}/src/amfs_postgres/migrations/002_search_indexes.sql +0 -0
  11. {amfs_adapter_postgres-0.2.2 → amfs_adapter_postgres-0.2.4}/src/amfs_postgres/migrations/003_knowledge_graph.sql +0 -0
  12. {amfs_adapter_postgres-0.2.2 → amfs_adapter_postgres-0.2.4}/src/amfs_postgres/migrations/004_agent_groups.sql +0 -0
  13. {amfs_adapter_postgres-0.2.2 → amfs_adapter_postgres-0.2.4}/src/amfs_postgres/migrations/005_configurable_embedding_dim.sql +0 -0
  14. {amfs_adapter_postgres-0.2.2 → amfs_adapter_postgres-0.2.4}/src/amfs_postgres/migrations/006_is_artifact.sql +0 -0
  15. {amfs_adapter_postgres-0.2.2 → amfs_adapter_postgres-0.2.4}/src/amfs_postgres/migrations/006_outcome_confidence_semantics.sql +0 -0
  16. {amfs_adapter_postgres-0.2.2 → amfs_adapter_postgres-0.2.4}/src/amfs_postgres/schema.sql +0 -0
  17. {amfs_adapter_postgres-0.2.2 → amfs_adapter_postgres-0.2.4}/src/amfs_postgres/tenant_context.py +0 -0
@@ -1,9 +1,9 @@
1
1
  Metadata-Version: 2.5
2
2
  Name: amfs-adapter-postgres
3
- Version: 0.2.2
3
+ Version: 0.2.4
4
4
  Summary: AMFS Postgres adapter with back-propagation triggers
5
5
  License-Expression: Apache-2.0
6
6
  Requires-Python: >=3.11
7
- Requires-Dist: amfs-core>=0.3.14
7
+ Requires-Dist: amfs-core>=0.3.16
8
8
  Requires-Dist: psycopg-pool>=3.1
9
9
  Requires-Dist: psycopg[binary]<4,>=3.1
@@ -1,13 +1,13 @@
1
1
  [project]
2
2
  name = "amfs-adapter-postgres"
3
- version = "0.2.2"
3
+ version = "0.2.4"
4
4
  description = "AMFS Postgres adapter with back-propagation triggers"
5
5
  requires-python = ">=3.11"
6
6
  license = "Apache-2.0"
7
7
  dependencies = [
8
8
  # 0.3.14 adds the capture fields this adapter now persists and selects back,
9
9
  # tool_calls among them.
10
- "amfs-core>=0.3.14",
10
+ "amfs-core>=0.3.16",
11
11
  "psycopg[binary]>=3.1,<4",
12
12
  "psycopg-pool>=3.1",
13
13
  ]