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

推荐订阅源

D
DataBreaches.Net
GbyAI
GbyAI
aimingoo的专栏
aimingoo的专栏
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客
大猫的无限游戏
大猫的无限游戏
M
MIT News - Artificial intelligence
腾讯CDC
博客园 - Franky
Engineering at Meta
Engineering at Meta
C
Check Point Blog
T
The Blog of Author Tim Ferriss
有赞技术团队
有赞技术团队
Microsoft Azure Blog
Microsoft Azure Blog
MyScale Blog
MyScale Blog
I
InfoQ
Blog — PlanetScale
Blog — PlanetScale
P
Proofpoint News Feed
The GitHub Blog
The GitHub Blog
N
Netflix TechBlog - Medium
Last Week in AI
Last Week in AI
S
SegmentFault 最新的问题
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
WordPress大学
WordPress大学

Show HN

GitHub - astefanutti/shaderbang: Shebang for Shaders Show HN: AI agents for UK GDAD PCF roles and their skills The Two Pillars: Mixer Mode and Meta-Software in the Reorganization of Software Work After AI GitHub - JaiCode08/teleport-env What 1,000+ Harness Experiments Taught Me About Self-Improving Agents Show HN: Liiists, a Markdown-first, iOS and CLI list app SwiperTab – Get this Extension for 🦊 Firefox (en-US) GitHub - kouhxp/fftext: Summarize, explain, fact-check, or translate any text, URL, or file. No GPU. No cloud. One command GitHub - sweetpad-dev/sweetpad: Develop Swift/iOS projects using VSCode GitHub - dogmaticdev/IRON: IRON a.k.a. Intermediate Representation Object Notation is a Interpreter/Database that is used to create Programming Languages. GitHub - sjhalani7/vaen: Package your AI coding harness into a portable .agent file, and share it across repos, teams, & the community without ever having to copy-paste instructions, skills, MCP config, or secrets. Show HN: Gandalf the Grader Show HN: Citadeld – replay any CI failure locally from a single file GitHub - tdortman/cuSBF: High-Performance GPU Super Bloom Filter coral-ai/claude-code-token-xray at main · Coral-Bricks-AI/coral-ai GitHub - ulyssestenn/funes: Funes is a Git-based framework for LLM-managed knowledge work: an AI Librarian ingests raw sources, builds an interlinked Markdown knowledge base, and uses it to produce cited reports, analyses, and other outputs. GitHub - ThatXliner/gah: Git Add Hunk, built for agents to use GitHub - harmont-dev/harmont-cli: Command-line client for the Harmont CI platform GitHub - brooksmcmillin/mcp-authflow: OAuth 2.0 Authorization Server framework for MCP servers GitHub - javaid-codes/audit-supply-chain-agents GitHub - amorey/gochan: A small library of common channel architectures for Go, inspired by Rust GitHub - arifozgun/OpenGem: Free, Open-Source AI API Gateway with Gemini, OpenAI & Anthropic Compatibility in 1 file GitHub - Pranesh950/BioPetals: 🌸 Run BIOxAI models at home, BitTorrent-style. Fine-tuning and inference up to 10x faster than offloading GitHub - cnguyen14/bounty-doctor: Diagnose a GitHub bounty issue before you waste hours: detects honeypot scam repos, AI-bot attempt swarms, and stale contests. Show HN: CoreMCP – MCP Server for On-Prem DBs Show HN: KittyHTML – Render HTML/CSS as an inline image in your terminal GitHub - bingud/filemat: Web-based file manager Show HN: TruthLens – Free multi-signal deepfake image detector GitHub - apexlocal-jz/claude-usage-tray: Windows system-tray app showing your Claude Code rate-limit usage at a glance. Zero deps, ~300 lines of PowerShell. Cross-IDE (works regardless of VS Code, Cursor, plain terminal). Release v0.1.2.1 · kouhxp/yapsnap
GitHub - epoch8/vedana
puritanne · 2026-06-23 · via 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.