Skip to main content

Memory Fast and Slow for AI Agents

Project description

agent-memfas

Memory Fast and Slow for AI Agents

A dual-store memory system inspired by Kahneman's "Thinking, Fast and Slow" โ€” giving AI agents persistent, intelligent memory that survives context window limits.

PyPI version License: MIT


๐ŸŽฏ Why memfas?

AI agents lose context. When conversations get long, older messages get compacted or dropped. Critical information vanishes:

User: "Let's continue the project"
Agent: "I apologize, but I don't have context about what project..."

memfas fixes this with persistent memory that lives outside the context window.


โœจ Features at a Glance

  • [v0.1] Core Memory

    • Type 1 (Fast) โ€” O(1) keyword triggers for instant recall
    • Type 2 (Slow) โ€” FTS5 full-text search with BM25 ranking
    • Zero dependencies โ€” works with SQLite built-in
  • [v0.2] Pluggable Backends

    • Swappable search backends โ€” FTS5 or embeddings
    • Semantic search โ€” FastEmbed or Ollama embeddings
    • Auto-suggest triggers from indexed content
    • memfas reindex โ€” migrate between backends
  • [v0.3] Dynamic Context Curation

    • Proactive memory selection each turn
    • Topic detection โ€” tracks conversation topic and shifts
    • Multi-factor relevance scoring โ€” semantic + recency + access patterns
    • Token budget management โ€” fills budget with highest-value memories
    • 84% token reduction โ€” 50K baseline โ†’ 7.8K curated
    • Telemetry โ€” JSONL logging, compression stats, latency tracking
  • [v0.3.1] Curation Levels

    • 5-level slider from minimal to full context
    • Level names: minimal / lean / balanced / rich / full
    • Per-query level override
    • auto level ready for smart selection
  • [v0.4] Context Management

    • Pre-emptive compaction โ€” triggers at 50%, not 90%
    • Three-way classification โ€” KEEP / SUMMARIZE / DROP
    • Relevance scoring โ€” embeddings + keyword fallback + recency decay
    • Cold storage โ€” dropped chunks recoverable for 30 days
    • Pluggable summarization โ€” MiniMax API or custom backends
    • Full observability โ€” JSONL logging for all events
    • Agent-agnostic โ€” plugs into any agent loop via callbacks

๐Ÿš€ Quick Start

Installation

pip install agent-memfas                 # Core (FTS5, zero deps)
pip install agent-memfas[embeddings]     # + semantic search
pip install agent-memfas[v3]             # + dynamic curation
pip install agent-memfas[context]        # + context management (v0.4)
pip install agent-memfas[all]            # Everything

Basic Usage (30 seconds)

# Initialize
cd ~/my-agent && memfas init

# Add keyword triggers (Type 1)
memfas remember alice --hint "Project manager, prefers async communication"
memfas remember acme --hint "Client project, due Q2, React frontend"

# Index your memory files (Type 2)
memfas index ./MEMORY.md ./memory/

# Recall context
memfas recall "What did Alice say about the deadline?"
# โ†’ Returns triggered + searched memories

Python API

from agent_memfas import Memory

# Initialize
mem = Memory("./memfas.yaml")

# Type 1: Instant triggers
mem.add_trigger("alice", "Project manager, prefers async")

# Type 2: Index and search
mem.index_file("./MEMORY.md")
results = mem.search("preference learning", limit=5)

# Combined recall
context = mem.recall("What did Alice say about the deadline?")
print(context)  # Ready to inject into LLM prompt

With Semantic Search (v0.2+)

from agent_memfas import Memory
from agent_memfas.embedders.fastembed import FastEmbedEmbedder

# Local embeddings (~130MB model, runs on CPU)
mem = Memory(
    "./memfas.yaml",
    search_backend="embedding",
    embedder=FastEmbedEmbedder()
)

# Now finds conceptually related content
results = mem.search("machine learning concepts")

With Dynamic Curation (v0.3+)

from agent_memfas.v3 import ContextCurator

curator = ContextCurator("./memfas.yaml")

# Get curated context within token budget
result = curator.get_context(
    query="what's the project status?",
    session_id="main",
    baseline_tokens=50000  # Your context limit
)

print(f"Curated: {result.curated_tokens} tokens")
print(f"Saved: {result.tokens_saved} ({result.compression_ratio:.0%})")
print(result.context)  # Inject this into your prompt

With Context Management (v0.4+)

from agent_memfas.context import ContextManager

# Initialize with callbacks for your agent's context
ctx = ContextManager(
    config_path="./memfas.yaml",
    memfas_memory_path="./memfas.yaml",   # enables embedding-based scoring
    get_context=lambda: current_messages,
    set_context=lambda msgs: replace_messages(msgs),
    get_token_count=lambda: count_tokens(current_messages),
    get_messages=lambda n: current_messages[-n:],
)

# In your agent loop:

# 1. New message arrived
ctx.on_message(user_message, current_messages)
ctx.set_current_prompt(user_message)

# 2. Before generating response โ€” checks health, auto-compacts if needed
status = ctx.before_response(max_tokens=100000)
print(f"Context: {status.pct_used:.0%} used, compaction: {status.needs_compaction}")

# 3. After response
ctx.after_response()

# 4. Session ending โ€” archives to cold storage
ctx.session_end()

# 5. Need something back from cold storage?
recovered = ctx.recover("what was the database migration plan")

๐Ÿ—๏ธ Architecture

โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚                      agent-memfas                           โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚  v0.4: Context Management                                   โ”‚
โ”‚  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”   โ”‚
โ”‚  โ”‚ Context  โ”‚  โ”‚Relevance โ”‚  โ”‚  Cold    โ”‚  โ”‚Summarizerโ”‚   โ”‚
โ”‚  โ”‚ Manager  โ”‚โ†’ โ”‚  Scorer  โ”‚โ†’ โ”‚ Storage  โ”‚โ†’ โ”‚ (MiniMax)โ”‚   โ”‚
โ”‚  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜   โ”‚
โ”‚       โ†“                                                     โ”‚
โ”‚  KEEP / SUMMARIZE / DROP โ†’ Recoverable for 30 days         โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚  v0.3: Context Curation                                     โ”‚
โ”‚  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”   โ”‚
โ”‚  โ”‚  Topic   โ”‚  โ”‚Relevance โ”‚  โ”‚  Token   โ”‚  โ”‚ Session  โ”‚   โ”‚
โ”‚  โ”‚ Detector โ”‚โ†’ โ”‚  Scorer  โ”‚โ†’ โ”‚  Budget  โ”‚โ†’ โ”‚  State   โ”‚   โ”‚
โ”‚  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜   โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚  v0.2: Search Backends                                      โ”‚
โ”‚  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”    โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”                โ”‚
โ”‚  โ”‚   FTS5Backend   โ”‚    โ”‚EmbeddingBackend โ”‚                โ”‚
โ”‚  โ”‚  (zero deps)    โ”‚    โ”‚ (sqlite-vec)    โ”‚                โ”‚
โ”‚  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜    โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜                โ”‚
โ”‚           โ†‘                      โ†‘                          โ”‚
โ”‚           โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜                          โ”‚
โ”‚                  โ”‚                                          โ”‚
โ”‚         โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”                                   โ”‚
โ”‚         โ”‚ SearchBackend โ”‚  โ† Pluggable interface            โ”‚
โ”‚         โ”‚     ABC       โ”‚                                   โ”‚
โ”‚         โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜                                   โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚  v0.1: Core Memory                                          โ”‚
โ”‚  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”    โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”                โ”‚
โ”‚  โ”‚   Type 1: Fast  โ”‚    โ”‚   Type 2: Slow  โ”‚                โ”‚
โ”‚  โ”‚    Triggers     โ”‚    โ”‚     Search      โ”‚                โ”‚
โ”‚  โ”‚     O(1)        โ”‚    โ”‚    O(log n)     โ”‚                โ”‚
โ”‚  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜    โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜                โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

๐Ÿ“– Documentation

Configuration

Create memfas.yaml:

db_path: ./memfas.db

sources:
  - path: ./MEMORY.md
    type: markdown
  - path: ./memory/*.md
    type: markdown

triggers:
  - keyword: alice
    hint: "Project manager, prefers async"
  - keyword: work
    hint: "Current projects"

search:
  max_results: 5
  recency_weight: 0.3  # Favor recent memories
  min_score: 0.1

CLI Reference

Command Description
memfas init Initialize in current directory
memfas recall <context> Recall memories (Type 1 + Type 2)
memfas search <query> Search only (Type 2)
memfas remember <kw> --hint <h> Add trigger
memfas forget <keyword> Remove trigger
memfas triggers List all triggers
memfas index <paths...> Index files/directories
memfas suggest Auto-suggest triggers from content
memfas stats Show statistics
memfas clear Clear indexed memories
memfas curate <query> Get curated context (v0.3)
memfas telemetry summary View performance stats (v0.3)

Context Management (v0.4) โ€” Python API only for now:

from agent_memfas.context import ContextManager, ContextConfig

# Status check
ctx.status()  # Returns ContextStatus with tokens, chunks, pct_used

# Manual compaction
result = ctx.compact()  # Returns CompactionResult

# Cold storage recovery
chunks = ctx.recover("database migration")

# Health metrics
ctx.health_check()  # Dict with tokens, cold storage count, config

Embedder Options

Embedder Install Model Notes
FastEmbed pip install fastembed bge-small-en Recommended, ~130MB
Ollama ollama pull nomic-embed-text nomic-embed Good if using Ollama

๐Ÿ”ฌ How It Works

Type 1: Keyword Triggers (Fast Path)

Input: "What's the status on the acme project?"
         โ†“
Trigger table scan: "alice" โ†’ match!
         โ†“
Return hint + linked memories instantly

Type 2: Search (Slow Path)

FTS5 (default):

Input: "preference learning papers"
         โ†“
BM25 ranking + recency decay
         โ†“
Top results by relevance

Embeddings:

Input: "machine learning concepts"
         โ†“
Generate query embedding
         โ†“
KNN search (cosine similarity)
         โ†“
Semantically related results

v0.3: Dynamic Curation

Context: "Let's continue the project discussion"
                    โ†“
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚ 1. Detect topic: "project"          โ”‚
โ”‚ 2. Score all memories:              โ”‚
โ”‚    - Semantic relevance: 0.85       โ”‚
โ”‚    - Recency: 0.92                  โ”‚
โ”‚    - Topic continuity: 0.78         โ”‚
โ”‚    - Access pattern: 0.65           โ”‚
โ”‚ 3. Fill 8000 token budget           โ”‚
โ”‚ 4. Return curated context           โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
                    โ†“
Result: 84% token reduction, focused context

v0.4: Context Management

Context window at 50% capacity
                    โ†“
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚ 1. Score each chunk:                โ”‚
โ”‚    score = (embedding_sim ร— 0.6)    โ”‚
โ”‚          + (recency_decay ร— 0.2)    โ”‚
โ”‚          + (importance ร— 0.1)       โ”‚
โ”‚                                     โ”‚
โ”‚ 2. Classify:                        โ”‚
โ”‚    โ‰ฅ 0.7  โ†’ KEEP                    โ”‚
โ”‚    0.3-0.7 โ†’ SUMMARIZE (MiniMax)    โ”‚
โ”‚    โ‰ค 0.3  โ†’ DROP to cold storage    โ”‚
โ”‚                                     โ”‚
โ”‚ 3. Enforce min_chunks_to_keep       โ”‚
โ”‚ 4. Log all drops for debugging      โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
                    โ†“
Result: Pre-emptive compaction, recoverable drops

Recency decay: Exponential with ~4h half-life. A chunk added 6h ago retains 37% of recency bonus.

Cold storage recovery: Jaccard-ranked search with stopword filtering. Chunks recoverable for 30 days.


๐Ÿงช Performance

Metric v0.1 v0.2 v0.3 v0.4
Trigger lookup O(1) O(1) O(1) O(1)
FTS5 search O(log n) O(log n) O(log n) O(log n)
Embedding search - O(n) O(n) cached O(n) cached
Token reduction - - 84% dynamic
Warm query latency - - 8ms <10ms
Cold storage recovery - - - Jaccard O(n)
Summarization - - - MiniMax API

๐Ÿค Integration

Clawdbot

## Memory (in AGENTS.md)

Before answering about prior work:
1. Run `memfas recall "<context>"`
2. Include returned context in reasoning

After compaction:
1. Run `memfas recall "current project"`
2. Check `memfas triggers`

Custom Agents

# In your agent loop โ€” with v0.3 Curation
from agent_memfas.v3 import ContextCurator

curator = ContextCurator("./memfas.yaml")

def get_response(user_message):
    # Get curated memory context
    mem_result = curator.get_context(
        query=user_message,
        session_id="main",
        baseline_tokens=100000
    )
    
    # Inject into prompt
    prompt = f"""
{mem_result.context}

User: {user_message}
"""
    return llm.complete(prompt)

Full Agent Loop with Context Management (v0.4)

from agent_memfas.context import ContextManager

class Agent:
    def __init__(self):
        self.messages = []
        self.ctx = ContextManager(
            config_path="./memfas.yaml",
            memfas_memory_path="./memfas.yaml",
            get_context=lambda: self.messages,
            set_context=lambda m: setattr(self, 'messages', m),
            get_token_count=lambda: sum(len(m['content'])//4 for m in self.messages),
            get_messages=lambda n: self.messages[-n:],
        )
    
    def handle_message(self, user_input: str) -> str:
        self.messages.append({"role": "user", "content": user_input})
        
        # Pre-response: check health, auto-compact if needed
        self.ctx.set_current_prompt(user_input)
        status = self.ctx.before_response(max_tokens=100000)
        
        # Generate response (your LLM call here)
        response = self.generate(self.messages)
        self.messages.append({"role": "assistant", "content": response})
        
        self.ctx.after_response()
        return response
    
    def end_session(self):
        self.ctx.session_end()  # Archives to cold storage

Context Config (v0.4)

Add to your memfas.yaml:

context:
  compaction_trigger_pct: 0.50    # Trigger early at 50%
  relevance_cutoff: 0.3           # DROP below this score
  relevance_keep_threshold: 0.7   # KEEP above this score
  min_chunks_to_keep: 5           # Safety floor
  
  # Scoring weights
  memfas_weight: 0.6              # Embedding similarity weight
  recency_bonus: 0.2              # Max recency boost (decays over ~4h)
  importance_bonus: 0.1           # Flat boost for important chunks
  
  # Cold storage
  cold_storage_enabled: true
  cold_storage_path: "./cold-storage/"
  recoverable_days: 30
  
  # Summarization (optional)
  summarize_medium_chunks: true
  summary_model: "minimax/MiniMax-M2.1"  # Set MINIMAX_API_KEY env var
  
  # Logging
  log_path: "./logs/context/"
  log_compaction: true
  log_drops: true

๐Ÿ“š Resources

  • Design Docs: See /docs for architecture decisions
  • Changelog: See releases for version history
  • Issues: GitHub Issues

๐Ÿ“„ License

MIT


Built for AI agents that need to remember. Inspired by losing context while building a memory system.

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

agent_memfas-0.4.0.tar.gz (63.4 kB view details)

Uploaded Source

Built Distribution

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

agent_memfas-0.4.0-py3-none-any.whl (67.3 kB view details)

Uploaded Python 3

File details

Details for the file agent_memfas-0.4.0.tar.gz.

File metadata

  • Download URL: agent_memfas-0.4.0.tar.gz
  • Upload date:
  • Size: 63.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.6

File hashes

Hashes for agent_memfas-0.4.0.tar.gz
Algorithm Hash digest
SHA256 cd678d9a5b88934b902067416558a16c4d4e039dfa995d3a07f21b5dea899cbd
MD5 15d23467e55289fd15a3a61f51889c98
BLAKE2b-256 502887e140ce130c4687b08836d4b2744e0288d3a2084954e93221a4e4a3eea1

See more details on using hashes here.

File details

Details for the file agent_memfas-0.4.0-py3-none-any.whl.

File metadata

  • Download URL: agent_memfas-0.4.0-py3-none-any.whl
  • Upload date:
  • Size: 67.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.6

File hashes

Hashes for agent_memfas-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2d8a44f11832185c1b6ad2d414de3a99d07690005ec0e766830c5f4cf23fb3e5
MD5 9ed3a4968f1953f2273348aaf48a5194
BLAKE2b-256 45b30db4a4cc16c89a9055928b1e96e194a074a7e313a64db85280ef040e4db9

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