Skip to main content

ACIS SDK

AI Context & Intelligent System — Memory for LLM Applications

Installation

pip install acis-memory

Quick Start

from acis import MemoryClient

# Point to your ACIS deployment
client = MemoryClient(
    tenant_id="your-tenant-uuid",
    base_url="https://your-acis-server.com/acis",
)

# Create session
session = client.create_session(user_id="user-123")

# Every turn:
client.add_event(session_id=session.session_id, role="user", content="Hello")
ctx = client.get_context(session_id=session.session_id, query="Hello")

# ctx.messages → pass directly to any LLM (OpenAI, Azure, Anthropic, etc.)
response = your_llm(messages=ctx.messages)

client.add_event(session_id=session.session_id, role="assistant", content=response)

# End conversation
client.close_session(session_id=session.session_id)

What is ACIS?

ACIS provides persistent memory for AI assistants. It automatically:

  • Stores conversation history (Short-Term Memory)
  • Extracts facts, preferences, and constraints (Long-Term Memory)
  • Assembles relevant context for every LLM call (token-budgeted)
  • Handles memory decay, contradiction detection, and entity graphs

Requirements

  • Python 3.9+
  • An ACIS server deployment (contact your admin for base_url and tenant_id)

Only Dependency

  • httpx (HTTP client)

That's it. No PostgreSQL, Redis, Celery, or Django needed on the app side.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

acis_memory-1.1.1.tar.gz (6.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

acis_memory-1.1.1-py3-none-any.whl (7.3 kB view details)

Uploaded Python 3

File details

Details for the file acis_memory-1.1.1.tar.gz.

File metadata

  • Download URL: acis_memory-1.1.1.tar.gz
  • Upload date:
  • Size: 6.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.0rc1

File hashes

Hashes for acis_memory-1.1.1.tar.gz
Algorithm Hash digest
SHA256 2b08e2621e8849bfe292aa4e032fe936650bc0c4f6d855921114e4d4206c2ec4
MD5 f67d530710ed4aafa15096268f4cef33
BLAKE2b-256 1f3d3994bf79dbb0c8718c48d51de113de3a7c9f15e6139215989ae10890f293

See more details on using hashes here.

File details

Details for the file acis_memory-1.1.1-py3-none-any.whl.

File metadata

  • Download URL: acis_memory-1.1.1-py3-none-any.whl
  • Upload date:
  • Size: 7.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.0rc1

File hashes

Hashes for acis_memory-1.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 8c298441d66c1fb7820062a605797bd54652b4affefa735bda989d24d0747f88
MD5 3ced1e78b1691d0abc8fa5e0fbe16b45
BLAKE2b-256 9c39dc776f2b8e425046607b1505c66a17f64766191a89d93e1c91452740b3a5

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page