Close Menu
Ztoog
    What's Hot
    Gadgets

    Apple announces sweeping EU App Store policy changes—including sideloading

    Crypto

    Expert Reveals 4 Reasons To Be Bullish On Q4

    Technology

    Singapore-based startup EduFi raises funding for its student loan platform

    Important Pages:
    • About Us
    • Contact us
    • Privacy Policy
    • Terms & Conditions
    Facebook X (Twitter) Instagram Pinterest
    Facebook X (Twitter) Instagram Pinterest
    Ztoog
    • Home
    • The Future

      Livestream FA Cup Soccer: Watch Newcastle vs. Man City From Anywhere

      What is Project Management? 5 Best Tools that You Can Try

      Operational excellence strategy and continuous improvement

      Hannah Fry: AI isn’t as powerful as we think

      FanDuel goes all in on responsible gaming push with new Play with a Plan campaign

    • Technology

      Laser 3D Printing Could Build Lunar Base Structures

      Iran war: How could it end?

      Democratic senators question CFTC staffing cuts in Chicago enforcement office

      Google’s Cloud AI lead on the three frontiers of model capability

      AMD agrees to backstop a $300M loan from Goldman Sachs for Crusoe to buy AMD AI chips, the first known case of AMD chips used as debt collateral (The Information)

    • Gadgets

      How to Run Ethernet Cables to Your Router and Keep Them Tidy

      macOS Tahoe 26.3.1 update will “upgrade” your M5’s CPU to new “super” cores

      Lenovo Shows Off a ThinkBook Modular AI PC Concept With Swappable Ports and Detachable Displays at MWC 2026

      POCO M8 Review: The Ultimate Budget Smartphone With Some Cons

      The Mission: Impossible of SSDs has arrived with a fingerprint lock

    • Mobile

      Need a power station? These two Anker ones are nearly half off

      Android’s March update is all about finding people, apps, and your missing bags

      Watch Xiaomi’s global launch event live here

      Our poll shows what buyers actually care about in new smartphones (Hint: it’s not AI)

      Is Strava down for you? You’re not alone

    • Science

      Florida can’t decide if its official saltwater mammal is a dolphin or a porpoise

      Big Tech Signs White House Data Center Pledge With Good Optics and Little Substance

      Inside the best dark matter detector ever built

      NASA’s Artemis moon exploration programme is getting a major makeover

      Scientists crack the case of “screeching” Scotch tape

    • AI

      A “ChatGPT for spreadsheets” helps solve difficult engineering challenges faster | Ztoog

      Online harassment is entering its AI era

      Meet NullClaw: The 678 KB Zig AI Agent Framework Running on 1 MB RAM and Booting in Two Milliseconds

      New method could increase LLM training efficiency | Ztoog

      The human work behind humanoid robots is being hidden

    • Crypto

      Ethereum co-founder Jeffrey Wilcke sends $157M in ETH to Kraken after months of wallet silence

      SEC Vs. Justin Sun Case Ends In $10M Settlement

      Google paid startup Form Energy $1B for its massive 100-hour battery

      Ethereum Breakout Alert: Corrective Channel Flip Sparks Impulsive Wave

      Show Your ID Or No Deal

    Ztoog
    Home » Meet Elysia: A New Open-Source Python Framework Redefining Agentic RAG Systems with Decision Trees and Smarter Data Handling
    AI

    Meet Elysia: A New Open-Source Python Framework Redefining Agentic RAG Systems with Decision Trees and Smarter Data Handling

    Facebook Twitter Pinterest WhatsApp
    Meet Elysia: A New Open-Source Python Framework Redefining Agentic RAG Systems with Decision Trees and Smarter Data Handling
    Share
    Facebook Twitter LinkedIn Pinterest WhatsApp

    If you’ve ever tried to build a agentic RAG system that actually works well, you know the pain. You feed it some documents, cross your fingers, and hope it doesn’t hallucinate when someone asks it a simple question. Most of the time, you get back irrelevant chunks of text that barely answer what was asked.

    Elysia is trying to fix this mess, and honestly, their approach is quite creative. Built by the folks at Weaviate, this open-source Python framework doesn’t just throw more AI at the problem – it completely rethinks how AI agents should work with your data.

    Note: Python 3.12 required

    What’s Actually Wrong with Most RAG Systems

    Here’s the thing that drives everyone crazy: traditional RAG systems are basically blind. They take your question, convert it to vectors, find some “similar” text, and hope for the best. It’s like asking someone to find you a good restaurant while they’re wearing a blindfold – they might get lucky, but probably not.

    Most systems also dump every possible tool on the AI at once, which is like giving a toddler access to your entire toolbox and expecting them to build a bookshelf.

    Elysia’s Three Pillars:

    1) Decision Trees

    Instead of giving AI agents every tool at once, Elysia guides them through a structured nodes for decisions. Think of it like a flowchart that actually makes sense. Each step has context about what happened before and what options come next.

    The really cool part? The system shows you exactly which path the agent took and why, so when something goes wrong, you can actually debug it instead of just shrugging and trying again.

    When the AI realizes it can’t do something (like searching for car prices in a makeup database), it doesn’t just keep trying forever. It sets an “impossible flag” and moves on, which sounds obvious but apparently needed to be invented.

    2) Smart Data Source Display

    Remember when every AI just spat out paragraphs of text? Elysia actually looks at your data and figures out how to show it properly. Got e-commerce products? You get product cards. GitHub issues? You get ticket layouts. Spreadsheet data? You get actual tables.

    The system examines your data structure first – the fields, the types, the relationships – then picks one of the seven formats that makes sense.

    3) Data Expertise

    This might be the biggest difference. Before Elysia searches anything, it analyzes your database to understand what’s actually in there. It can summarize, generate metadata, and choose display types. It looks at:

    • What kinds of fields you have
    • What the data ranges look like
    • How different pieces relate to each other
    • What would make sense to search for

    How does it Work?

    Learning from Feedback

    Elysia remembers when users say “yes, this was helpful” and uses those examples to improve future responses. But it does this smartly – your feedback doesn’t mess up other people’s results, and it helps the system get better at answering your specific types of questions.

    This means you can use smaller, cheaper models that still give good results because they’re learning from actual success cases.

    Chunking That Makes Sense

    Most RAG systems chunk all your documents upfront, which uses tons of storage and often creates weird breaks. Elysia chunks documents only when needed. It searches full documents first, then if a document looks relevant but is too long, it breaks it down on the fly.

    This saves storage space and actually works better because the chunking decisions are informed by what the user is actually looking for.

    Model Routing

    Different tasks need different models. Simple questions don’t need GPT-4, and complex analysis doesn’t work well with tiny models. Elysia automatically routes tasks to the right model based on complexity, which saves money and improves speed.

    https://weaviate.io/blog/elysia-agentic-rag

    Getting Started

    The setup is quite simple:

    pip install elysia-ai
    elysia start

    That’s it. You get both a web interface and the Python framework.

    For developers who want to customize things:

    from elysia import tool, Tree
    
    tree = Tree()
    
    @tool(tree=tree)
    async def add(x: int, y: int) -> int:
        return x + y
    
    tree("What is the sum of 9009 and 6006?")
    

    If you have Weaviate data, it’s even simpler:

    import elysia
    tree = elysia.Tree()
    response, objects = tree(
        "What are the 10 most expensive items in the Ecommerce collection?",
        collection_names = ["Ecommerce"]
    )
    

    Real-World Example: Glowe’s Chatbot

    The Glowe skincare chatbot platform uses Elysia to handle complex product recommendations. Users can ask things like “What products work well with retinol but won’t irritate sensitive skin?” and get intelligent responses that consider ingredient interactions, user preferences, and product availability.youtube

    This isn’t just keyword matching – it’s understanding context and relationship between ingredients, user history, and product characteristics in ways that would be really hard to code manually.youtube

    Summary

    Elysia represents Weaviate’s attempt to move beyond traditional ask-retrieve-generate RAG patterns by combining decision-tree agents, adaptive data presentation, and learning from user feedback. Rather than just generating text responses, it analyzes data structure beforehand and selects appropriate display formats while maintaining transparency in its decision-making process. As Weaviate’s planned replacement for their Verba RAG system, it offers a foundation for building more sophisticated AI applications that understand both what users are asking and how to present answers effectively, though whether this translates to meaningfully better real-world performance remains to be seen since it is still in beta.


    Check out the TECHNICAL DETAILS and GITHUB PAGE. Feel free to check out our GitHub Page for Tutorials, Codes and Notebooks. Also, feel free to follow us on Twitter and don’t forget to join our 100k+ ML SubReddit and Subscribe to our Newsletter.


    Asif Razzaq is the CEO of Marktechpost Media Inc.. As a visionary entrepreneur and engineer, Asif is committed to harnessing the potential of Artificial Intelligence for social good. His most recent endeavor is the launch of an Artificial Intelligence Media Platform, Marktechpost, which stands out for its in-depth coverage of machine learning and deep learning news that is both technically sound and easily understandable by a wide audience. The platform boasts of over 2 million monthly views, illustrating its popularity among audiences.

    Share. Facebook Twitter Pinterest LinkedIn WhatsApp

    Related Posts

    AI

    A “ChatGPT for spreadsheets” helps solve difficult engineering challenges faster | Ztoog

    Science

    Big Tech Signs White House Data Center Pledge With Good Optics and Little Substance

    AI

    Online harassment is entering its AI era

    AI

    Meet NullClaw: The 678 KB Zig AI Agent Framework Running on 1 MB RAM and Booting in Two Milliseconds

    AI

    New method could increase LLM training efficiency | Ztoog

    AI

    The human work behind humanoid robots is being hidden

    AI

    NVIDIA Releases DreamDojo: An Open-Source Robot World Model Trained on 44,711 Hours of Real-World Human Video Data

    AI

    Personalization features can make LLMs more agreeable | Ztoog

    Leave A Reply Cancel Reply

    Follow Us
    • Facebook
    • Twitter
    • Pinterest
    • Instagram
    Top Posts
    Crypto

    Top Crypto Movers of the Week

    As Bitcoin goes so does the cryptocurrency market. And with every ebb and circulation of…

    Technology

    Best Solar Panel Installation Companies in Washington, DC

    If you are trying to go inexperienced — or save inexperienced — in Washington, DC,…

    Gadgets

    The best hiking boots of 2024

    We might earn income from the merchandise out there on this web page and take…

    Technology

    Climate change: Should I give up flying for the environment’s sake?

    Your Mileage May Vary is an recommendation column providing you a brand new framework for…

    AI

    Meet ChemBench: A Machine Learning Framework Designed to Rigorously Evaluate the Chemical Knowledge and Reasoning Abilities of LLMs

    The surge in synthetic intelligence analysis has heralded a brand new period throughout numerous scientific…

    Our Picks
    Mobile

    5 Android apps you shouldn’t miss this week

    Crypto

    SBF trial brings in FTX exec and experts, NY AG sues three crypto firms for fraud, Reddit kills blockchain program and FTC sues bankrupt Voyager

    AI

    MIT Researchers Present A new computer vision system turns any shiny object into a camera of sorts: Enabling an observer to see around corners or beyond obstructions

    Categories
    • AI (1,561)
    • Crypto (1,828)
    • Gadgets (1,871)
    • Mobile (1,911)
    • Science (1,940)
    • Technology (1,863)
    • The Future (1,717)
    Most Popular
    The Future

    iPhone 13 Deals: Get an iPhone 13 for Free With New Line, or Save With Trade-In

    Technology

    Video Friday: Training ARTEMIS – IEEE Spectrum

    Gadgets

    How to Back Up Your Digital Life (2023): Hard Drives, Cloud-Based Tools, and Tips

    Ztoog
    Facebook X (Twitter) Instagram Pinterest
    • Home
    • About Us
    • Contact us
    • Privacy Policy
    • Terms & Conditions
    © 2026 Ztoog.

    Type above and press Enter to search. Press Esc to cancel.