Antaris Flame — memory, safety, and context for AI agent bots (5,000 memory tier)
Project description
antaris-flame
Memory, safety, and context for AI agent bots — Flame tier (5,000 memories)
antaris-flame is the mid-tier of the Antaris bot runtime — bundling persistent memory, safety screening, and context optimization in a single install. Capped at 5,000 memories for production deployments.
What's Included
- antaris-memory — BM25 + co-occurrence semantic search, audit logging, memory decay, recovery
- antaris-guard — Prompt injection detection, PII redaction, rate limiting, compliance templates
- antaris-context — Token budget management, context window optimization, compression strategies
Tier Limits
| Tier | Memory Cap | Package |
|---|---|---|
| Spark | 500 memories | antaris-spark |
| Flame | 5,000 memories | antaris-flame |
| Forge | 25,000 memories | antaris-forge |
Quick Start
from antaris_memory import MemorySystem
from antaris_guard import PromptGuard
from antaris_context import ContextManager
# Memory — capped at 5,000 entries by default
mem = MemorySystem("./workspace")
mem.load()
mem.ingest("User prefers concise answers", source="conversation")
results = mem.search("user preferences")
# Guard
guard = PromptGuard()
if not guard.is_safe(user_input):
return # block before reaching model
# Context
ctx = ContextManager(total_budget=8000)
ctx.set_memory_client(mem)
ctx.add_content("conversation", messages)
ctx.optimize_context()
GitHub
https://github.com/Antaris-Analytics-LLC/antaris-flame
License
Apache 2.0 — see LICENSE
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file antaris_flame-2.0.0.tar.gz.
File metadata
- Download URL: antaris_flame-2.0.0.tar.gz
- Upload date:
- Size: 6.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c665673e0f7e4373c2192d98fd45ba0578f8ef399d7eadb9ecc1902db0e4f70d
|
|
| MD5 |
b392886b2f1997d3d779d9772f11c1a2
|
|
| BLAKE2b-256 |
451ac52c7477f19a52540db5cb4657f72c32fe02d5e263c1de50e11aaf282862
|
File details
Details for the file antaris_flame-2.0.0-py3-none-any.whl.
File metadata
- Download URL: antaris_flame-2.0.0-py3-none-any.whl
- Upload date:
- Size: 7.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9bd39d99b04925954447221fb7dcb181661225fd3d651516080ae3725447c18d
|
|
| MD5 |
19b7394c1ef4c8e4c60c2c6b13d6f139
|
|
| BLAKE2b-256 |
b3029d19646c5a1bae1fe62a3676a9c6737eabc5823e4298fb98cc3725b074c3
|