You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Enhance Knowledge Explorer with interactive graph and settings panel
- Fixed routing conflict between app.py and debug_routes.py
- Added interactive D3.js graph visualization
- Implemented API key configuration UI in new settings tab
- Added API endpoint for updating API keys
- Improved UI styling and responsiveness
- Updated README with prominent Quick Start section
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
- Knowledge Explorer UI: http://localhost:8000/explorer
20
+
- API Documentation: http://localhost:8000/api/docs
21
+
22
+
3.**Configure API keys** through the Settings tab in the Knowledge Explorer UI
23
+
24
+
4.**Stop the application** when finished:
25
+
```bash
26
+
./stop.sh
27
+
```
28
+
29
+
For more options:
30
+
```bash
31
+
./run.sh --help
32
+
```
33
+
3
34
## 🌟 Overview
4
35
A self-organizing knowledge graph system that implements Buehler's (2025) agentic deep graph reasoning architecture. The system builds dynamic, evolving knowledge graphs using multi-agent collaborative reasoning, temporal evolution tracking, and advanced self-organization capabilities as described in the original research.
5
36
@@ -38,10 +69,11 @@ A self-organizing knowledge graph system that implements Buehler's (2025) agenti
38
69
## 📊 System Architecture
39
70
40
71
### Frontend (React + TypeScript)
41
-
- Interactive graph visualization
72
+
- Interactive graph visualization with D3.js
42
73
- Real-time updates via WebSockets
43
74
- Analytics dashboard for metrics
44
75
- Content analysis input tools
76
+
- In-browser API key configuration
45
77
46
78
### Backend (Python + FastAPI)
47
79
- Graph management and analysis (NetworkX)
@@ -86,7 +118,7 @@ A self-organizing knowledge graph system that implements Buehler's (2025) agenti
86
118
- Check for Docker and Docker Compose
87
119
- Build the Docker images (if needed)
88
120
- Start the application containers
89
-
- Automatically find an available port (default: 8080)
121
+
- Automatically find an available port (default: 8000)
90
122
- The application will be available at http://localhost:[PORT]
91
123
92
124
Note: If the default port is in use, the script will automatically find the next available port.
0 commit comments