Views
No views yet
“A human-in-the-loop AI system that maps knowledge and generates research hypotheses.”
[PDFs] -> /ingest -> [Chunks] -> [Embeddings]
|
v
[Clustering] -> [Cognitive Map]
|
v
[Bridge Detection] -> [Visual Bridge (Pink Line)]
|
v
[User Click] -> /hypothesize -> [Novel Research Hypothesis]1cd backend
2python -m venv venv
3source venv/bin/activate
4pip install -r requirements.txt
5uvicorn main:app --reload1cd frontend
2npm install
3npm run dev| Method | Endpoint | Description |
|---|---|---|
| GET | / | Health check to verify backend status. |
| POST | /ingest | Upload PDFs/Text. Returns processed chunks and stats. |
| GET | /map | Returns 2D coordinates and cluster info for the map. |
| GET | /discover | Returns bridges (connections) between clusters. |
| POST | /hypothesize | Generates a hypothesis for a selected bridge. |
backenduvicorn main:app --host 0.0.0.0 --port $PORTOPENROUTER_API_KEYfrontendVITE_API_BASE=https://your-railway-url.app