惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
G
Google Developers Blog
小众软件
小众软件
V
V2EX
月光博客
月光博客
腾讯CDC
aimingoo的专栏
aimingoo的专栏
J
Java Code Geeks
Y
Y Combinator Blog
人人都是产品经理
人人都是产品经理
B
Blog RSS Feed
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - 【当耐特】
D
Docker
M
MIT News - Artificial intelligence
Google DeepMind News
Google DeepMind News
N
Netflix TechBlog - Medium
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
I
InfoQ
MongoDB | Blog
MongoDB | Blog
Apple Machine Learning Research
Apple Machine Learning Research
Jina AI
Jina AI

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
GitHub - epoch8/vedana
puritanne · 2026-06-23 · via Hacker News: Show HN

License CI Python 3.12+ Docs GitHub stars

Open-source multi-agent RAG over a knowledge graph. Instead of guessing answers from text similarity, Vedana agents navigate a typed graph step by step — issuing Cypher queries, running vector search, verifying sources, and assembling answers from real data.

Architecture

Quickstart · Documentation · Concepts · Discussions


Why Vedana

Classic RAG works well for summarization and vague questions, but breaks the moment you need completeness, structure, or logic:

  • "How many contracts expire this quarter?" — classic RAG guesses from top-K, not from the dataset.
  • "All documents regulating category X" — top-K returns a sample. Missed items are invisible.
  • "Which products in category X are regulated by which documents?" — that's a graph traversal, not a similarity match.

These failures are structural — better embeddings, larger context windows, and bigger top-K don't fix them.

Vedana takes a different path. It treats the LLM as an interpreter, not a source of truth: an explicit data model is loaded into a knowledge graph + vector store, and agents query it through tools (Cypher, vector search, document lookup). Every answer is traceable — you can see exactly which nodes, edges, and chunks contributed to it.

Read more: What is Vedana · Why Classic RAG Fails · Semantic RAG Overview.

Quickstart

  1. Copy and fill the environment file:

    cp apps/vedana/.env.example apps/vedana/.env
    # edit apps/vedana/.env — at minimum, set OPENAI_API_KEY
  2. Bring up the stack:

    docker-compose -f apps/vedana/docker-compose.yml up --build -d
  3. Open the backoffice at http://localhost:3000 and ask your first question.

Full walkthrough: Quick Start. For development on Vedana itself (native Python with uv, infra in Docker), see Local Development.

What's in this repo

vedana/
├── apps/
│   ├── vedana/              # Main Vedana deployment (Docker, Reflex backoffice, ETL)
│   └── jims-demo/           # Minimal JIMS demo (a CLI-style agent on the JIMS framework)
├── libs/
│   ├── jims-core/           # Thread/event/pipeline framework (the substrate Vedana runs on)
│   ├── jims-api/            # FastAPI HTTP API over JIMS threads
│   ├── jims-backoffice/     # Backoffice primitives for JIMS-based apps
│   ├── jims-telegram/       # Telegram adapter for JIMS
│   ├── jims-tui/            # Terminal UI for testing JIMS pipelines
│   ├── jims-widget/         # Embeddable chat widget for JIMS
│   ├── vedana-core/         # The RAG pipeline: data-model filtering, Cypher generation, vector search, answer synthesis
│   ├── vedana-backoffice/   # Reflex admin UI for Vedana (chat, ETL runner, metrics, prompt tuning)
│   └── vedana-etl/          # Datapipe-based incremental ETL: Grist → Memgraph + pgvector
├── docs/                    # Documentation — built and published to vedana.tech
└── pyproject.toml           # uv workspace root

The repository is a uv workspace. For a one-shot setup of all dependencies:

For architecture in depth — see docs/architecture/overview.md.

Components at a glance

JIMSJust an Integrated Multiagent System. A framework for running conversational agents with persistent threads, typed events, and pluggable pipelines. Vedana itself is just one JIMS pipeline; apps/jims-demo is a minimal one.

Vedana Core — the Semantic RAG pipeline: receives a user message, optionally filters the data model, lets the LLM generate Cypher / vector-search tool calls, retrieves results, and synthesizes a sourced answer.

Vedana ETL — an incremental Datapipe pipeline that pulls the data model and the data itself from Grist and loads them into Memgraph (knowledge graph) and pgvector (embeddings).

Vedana Backoffice — a Reflex admin UI for running ETL, chatting with the assistant, viewing metrics, and tuning prompts.

Interface Package
Telegram bot jims-telegram
Terminal UI jims-tui
Embeddable widget jims-widget
HTTP API jims-api
Reflex admin vedana-backoffice

Requirements

  • Python 3.12
  • PostgreSQL with the pgvector extension
  • Memgraph
  • Grist (the default data-model/data source — ETL can be extended to other sources)
  • An LLM provider — OpenAI, OpenRouter, or anything supported by LiteLLM

Note on pgvector: some hosted Postgres providers (Supabase, Neon, etc.) manage extensions on their own. Set CREATE_PGVECTOR_EXTENSION=false in .env to skip the CREATE EXTENSION step. See Configuration for the full env reference.

Documentation

Browsable documentation lives at vedana.tech/docs and is built from the docs/ folder in this repository.

Highlights:

  • Getting Started — Quick Start, Local Development, Configuration.
  • Concepts — what Vedana is, why classic RAG fails, Semantic RAG overview, data model, playbook.
  • Architecture — JIMS Core, Vedana Core, ETL, Backoffice, Storage Model, Observability.
  • Data Model — anchors, attributes, links, queries, prompts.
  • Data Ingestion — documents, structured data, FAQ, custom ETL.
  • Guides — adding anchors / attributes / links / documents / custom tools, tuning embeddings, multi-tenancy.
  • API Reference — HTTP, Widget, Telegram, Python, env-vars.
  • Operations — Deployment, Monitoring, Troubleshooting, Costs, Security.
  • Product — Use Cases, Comparison with classic RAG, Evaluation, Limitations, FAQ.

Observability

OpenTelemetry traces, Prometheus metrics, and optional Sentry integration are wired into every pipeline run. See Observability and Monitoring.

Contributing

We welcome contributions — bug reports, feature requests, docs fixes, and code. Start here:

Security issues: see SECURITY.md.

License

Vedana is distributed under the Apache License 2.0 — free for commercial and non-commercial use, including modification and redistribution, with attribution and a notice of changes.

Acknowledgements

Vedana stands on the shoulders of:

  • Memgraph — the knowledge graph backend.
  • pgvector — vector search inside Postgres.
  • Grist — the spreadsheet-as-a-database that drives the data model and ingestion.
  • Datapipe — the incremental-ETL engine behind vedana-etl.
  • LiteLLM — uniform access to dozens of LLM providers.
  • Reflex — the Python framework powering the backoffice.

Built by Epoch8.