cd /news/ai-tools/building-complete-rag-ai-package-ai-… · home topics ai-tools article
[ARTICLE · art-127681] src=dev.to ↗ pub= topic=ai-tools verified=true sentiment=↑ positive

Building Complete RAG AI Package- AI Curt

A developer released aicurt v0.1.1, an open-source Python package that adds retrieval-augmented generation primitives on top of the project's existing PII detection and text sanitization utilities. The update introduces AICurtEmbedder, AICurtStore, AICurtMemoryStore, and AICurtRAG, letting developers ingest documents and run semantic, keyword, and hybrid search queries through a few lines of code. The developer says future releases will add caching mechanisms, expanded vector store integrations, and production performance optimizations.

by read3 min views1 publishedSep 12, 2026

Every developer working with Large Language Models eventually hits the same wall. You have the intelligence of a frontier model, but getting that model to talk to your own data securely, efficiently, and without boilerplate fatigue feels like assembling a jigsaw puzzle in the dark.

That exact frustration is what led me to build aicurt, an open-source Python package designed to streamline modern AI integration. And today, I am incredibly excited to share our latest milestone: the release of aicurt v0.1.1, a version built entirely around empowering developers with powerful retrieval foundations and RAG (Retrieval-Augmented Generation) primitives right out of the box.

When aicurt started with v0.1.0, the goal was to build a rock-solid, production-ready scaffold for AI pipelines. Out of the gate, the library shipped with essential utilities that developers usually have to build from scratch:

Yet, as applications scaled, a critical missing piece became clear: intelligent data retrieval. Developers didn't just need to chunk and sanitize text; they needed an intuitive, high-performance way to search, store, and augment models with that data. That vision drove the development of our newest release.

With version 0.1.1, we are taking a massive leap forward in making aicurt a first-class citizen for AI search and RAG architectures. Here is a breakdown of everything new in this release:

AICurtEmbedder`` AICurtMemoryStore``AICurtStore`` AICurtRAG``aicurt for robust retrieval infrastructure and advanced AI search capabilities alongside our core privacy and preprocessing features. With the new public API surface in v0.1.1, setting up a complete, end-to-end Retrieval-Augmented Generation workflow takes only a few straightforward lines of code.

Here is how you can ingest text chunks, manage storage, and query your data contextually:

from aicurt import AICurtRAG, AICurtEmbedder, AICurtStore

embedder = AICurtEmbedder()
store = AICurtStore()

rag = AICurtRAG(embedder=embedder, store=store)

documents = [
    "AICurt provides robust PII detection and text sanitization engines for safe AI processing.",
    "Version 0.1.1 introduces powerful retrieval foundations including semantic, keyword, and hybrid search workflows.",
    "Developers can easily orchestrate RAG applications using clean public APIs directly from the package root."
]

rag.add_documents(documents)

query = "How do I use the new retrieval foundations in aicurt?"
response = rag.query(query)

print("RAG Response:", response)

Version 0.1.1 lays down the heavy-duty groundwork needed for reliable, context-aware AI search. But this is just the beginning. Future updates will build upon this retrieval foundation with enhanced caching mechanisms, expanded vector store integrations, and deeper performance optimizations for production environments.

Whether you are building an internal company search tool, an automated documentation assistant, or securing data pipelines with our PII engines, I would love for you to try out aicurt and see how it fits into your stack.

  pip install aicurt

If you encounter bugs, have feature requests, or want to contribute to the roadmap, please feel free to star the repo or open an issue on GitHub. Let us build better AI search, together!

── more in #ai-tools 4 stories · sorted by recency
── more on @aicurt 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain — perfect for shipping the agent you just read about.

$git push zahid main
Live at https://your-agent.zahid.host
Get free account → Pricing
from €0/mo · no card required
LIVE [news/building-complete-ra…] indexed:0 read:3min 2026-09-12 ·