Allternit Open Notebook is a headless research backend that powers NotebookLM-style RAG without Docker. It stores notebooks, sources, and chat messages in SurrealDB, chunks and indexes sources, and provides grounded chat with citations.
curl -X POST http://127.0.0.1:5055/api/notebooks/nb_1/chat \ -H 'content-type: application/json' \ -d '{"message":"What was the revenue growth?"}'
Response (SSE):
data: {"text":"Revenue grew"}data: {"text":" by 20%"}data: {"citation":{"index":1,"source_id":"src_1","excerpt":"Revenue increased by 20% year over year"}}data: {"done":true}