Metadata-Version: 2.4
Name: adi-super-memory
Version: 0.4.0
Summary: ADI Super Memory: STM + LTM + distilled Super Memory with full adapters, Postgres/Qdrant backends, RBAC API keys, and policy-gated tool execution.
Author: Adi's American Soft LLC
License: Apache-2.0
Keywords: agentic-ai,memory,agents,rag,rbac,qdrant,postgres,langgraph,autogen,semantic-kernel,governance,safety,robotics
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: pydantic>=2.0; python_version >= "3.9"
Provides-Extra: server
Requires-Dist: fastapi>=0.110; extra == "server"
Requires-Dist: uvicorn>=0.23; extra == "server"
Provides-Extra: llm
Requires-Dist: openai>=1.0.0; extra == "llm"
Provides-Extra: postgres
Requires-Dist: psycopg[binary]>=3.1.18; extra == "postgres"
Provides-Extra: qdrant
Requires-Dist: qdrant-client>=1.7.0; extra == "qdrant"
Provides-Extra: dev
Requires-Dist: pytest>=8.0; extra == "dev"
Requires-Dist: ruff>=0.6; extra == "dev"
Requires-Dist: mypy>=1.8; extra == "dev"
Requires-Dist: build>=1.2; extra == "dev"
Requires-Dist: twine>=5.0; extra == "dev"

# adi-super-memory v0.4 (Upgraded ZIP)

Includes:
- Full adapters: LangGraph + AutoGen + Semantic Kernel (+ LangChain)
- Backends: InMemory, SQLite, Postgres (optional), Qdrant vector backend (optional)
- Hosted service: FastAPI + RBAC tenant API keys
- Policy enforcement hooks for tool execution (action gating)

Run server:
```bash
pip install "adi-super-memory[server]"
uvicorn adi_super_memory.server.app:app --host 0.0.0.0 --port 8080
```
