[PR #862] [CLOSED] feat: AI Knowledge Explorer #9578

Closed
opened 2026-06-10 01:54:37 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Shubhamsaboo/awesome-llm-apps/pull/862
Author: @katrinalaszlo
Created: 6/5/2026
Status: Closed

Base: mainHead: feat/ai-knowledge-explorer


📝 Commits (1)

  • 6e2632b feat: add AI Knowledge Explorer generative UI agent

📊 Changes

36 files changed (+17218 additions, -0 deletions)

View changed files

generative_ui_agents/ai-knowledge-explorer/.env.example (+2 -0)
generative_ui_agents/ai-knowledge-explorer/.gitignore (+10 -0)
generative_ui_agents/ai-knowledge-explorer/README.md (+95 -0)
generative_ui_agents/ai-knowledge-explorer/agent/.gitignore (+4 -0)
generative_ui_agents/ai-knowledge-explorer/agent/.python-version (+1 -0)
generative_ui_agents/ai-knowledge-explorer/agent/langgraph.json (+10 -0)
generative_ui_agents/ai-knowledge-explorer/agent/main.py (+33 -0)
generative_ui_agents/ai-knowledge-explorer/agent/pyproject.toml (+19 -0)
generative_ui_agents/ai-knowledge-explorer/agent/src/__init__.py (+0 -0)
generative_ui_agents/ai-knowledge-explorer/agent/src/state.py (+34 -0)
generative_ui_agents/ai-knowledge-explorer/agent/src/tools.py (+455 -0)
generative_ui_agents/ai-knowledge-explorer/agent/uv.lock (+2080 -0)
generative_ui_agents/ai-knowledge-explorer/next-env.d.ts (+6 -0)
generative_ui_agents/ai-knowledge-explorer/next.config.ts (+11 -0)
generative_ui_agents/ai-knowledge-explorer/package-lock.json (+12724 -0)
generative_ui_agents/ai-knowledge-explorer/package.json (+40 -0)
generative_ui_agents/ai-knowledge-explorer/postcss.config.mjs (+5 -0)
generative_ui_agents/ai-knowledge-explorer/scripts/run-agent.sh (+3 -0)
generative_ui_agents/ai-knowledge-explorer/scripts/setup-agent.sh (+3 -0)
generative_ui_agents/ai-knowledge-explorer/src/app/api/copilotkit/[[...slug]]/route.ts (+29 -0)

...and 16 more files

📄 Description

Summary

  • Interactive knowledge graph agent: drop files or paste content, agent extracts entities/relationships, renders a force-directed graph
  • Supports documents (.md, .txt, .csv, .json) and code files (.py, .ts, .js, etc.)
  • Click nodes to view details, double-click to expand, chat to navigate
  • Built with CopilotKit v2 + LangGraph + react-force-graph-2d

Test plan

  • npm install && npm run dev starts frontend (3000) + agent (8123)
  • Click "Try example docs" or "Try example code" to test with bundled content
  • Drop files onto the page to upload custom content
  • Click graph nodes to see detail panel
  • Click "Expand" to drill into a node
  • Click "New" to reset and start over

🤖 Generated with Claude Code


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Shubhamsaboo/awesome-llm-apps/pull/862 **Author:** [@katrinalaszlo](https://github.com/katrinalaszlo) **Created:** 6/5/2026 **Status:** ❌ Closed **Base:** `main` ← **Head:** `feat/ai-knowledge-explorer` --- ### 📝 Commits (1) - [`6e2632b`](https://github.com/Shubhamsaboo/awesome-llm-apps/commit/6e2632babef4a7aadbca49492140e2b5f04426de) feat: add AI Knowledge Explorer generative UI agent ### 📊 Changes **36 files changed** (+17218 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `generative_ui_agents/ai-knowledge-explorer/.env.example` (+2 -0) ➕ `generative_ui_agents/ai-knowledge-explorer/.gitignore` (+10 -0) ➕ `generative_ui_agents/ai-knowledge-explorer/README.md` (+95 -0) ➕ `generative_ui_agents/ai-knowledge-explorer/agent/.gitignore` (+4 -0) ➕ `generative_ui_agents/ai-knowledge-explorer/agent/.python-version` (+1 -0) ➕ `generative_ui_agents/ai-knowledge-explorer/agent/langgraph.json` (+10 -0) ➕ `generative_ui_agents/ai-knowledge-explorer/agent/main.py` (+33 -0) ➕ `generative_ui_agents/ai-knowledge-explorer/agent/pyproject.toml` (+19 -0) ➕ `generative_ui_agents/ai-knowledge-explorer/agent/src/__init__.py` (+0 -0) ➕ `generative_ui_agents/ai-knowledge-explorer/agent/src/state.py` (+34 -0) ➕ `generative_ui_agents/ai-knowledge-explorer/agent/src/tools.py` (+455 -0) ➕ `generative_ui_agents/ai-knowledge-explorer/agent/uv.lock` (+2080 -0) ➕ `generative_ui_agents/ai-knowledge-explorer/next-env.d.ts` (+6 -0) ➕ `generative_ui_agents/ai-knowledge-explorer/next.config.ts` (+11 -0) ➕ `generative_ui_agents/ai-knowledge-explorer/package-lock.json` (+12724 -0) ➕ `generative_ui_agents/ai-knowledge-explorer/package.json` (+40 -0) ➕ `generative_ui_agents/ai-knowledge-explorer/postcss.config.mjs` (+5 -0) ➕ `generative_ui_agents/ai-knowledge-explorer/scripts/run-agent.sh` (+3 -0) ➕ `generative_ui_agents/ai-knowledge-explorer/scripts/setup-agent.sh` (+3 -0) ➕ `generative_ui_agents/ai-knowledge-explorer/src/app/api/copilotkit/[[...slug]]/route.ts` (+29 -0) _...and 16 more files_ </details> ### 📄 Description ## Summary - Interactive knowledge graph agent: drop files or paste content, agent extracts entities/relationships, renders a force-directed graph - Supports documents (.md, .txt, .csv, .json) and code files (.py, .ts, .js, etc.) - Click nodes to view details, double-click to expand, chat to navigate - Built with CopilotKit v2 + LangGraph + react-force-graph-2d ## Test plan - [ ] `npm install && npm run dev` starts frontend (3000) + agent (8123) - [ ] Click "Try example docs" or "Try example code" to test with bundled content - [ ] Drop files onto the page to upload custom content - [ ] Click graph nodes to see detail panel - [ ] Click "Expand" to drill into a node - [ ] Click "New" to reset and start over 🤖 Generated with [Claude Code](https://claude.com/claude-code) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-06-10 01:54:37 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/awesome-llm-apps#9578