# Documentazione ## Struttura ``` docs/ ├── README.md # Questo file - panoramica ├── integration.md # Come usare NotebookLM con RAG └── api/ # Documentazione API dettagliata ``` ## Guide Rapide ### Solo NotebookLM Agent Non serve Qdrant. Vedi [README principale](../README.md) sezione "NotebookLM Agent". ### NotebookLM + RAG Serve Qdrant. Vedi [integration.md](./integration.md). ### API Reference Endpoint dettagliati in [api/endpoints.md](./api/endpoints.md). --- ## Endpoint Principali ### NotebookLM Agent ``` POST /api/v1/notebooks # Crea notebook GET /api/v1/notebooks # Lista notebook POST /api/v1/notebooks/{id}/sources # Aggiungi fonte POST /api/v1/notebooks/{id}/chat # Chat POST /api/v1/webhooks # Registra webhook ``` ### DocuMente RAG ``` POST /api/v1/documents # Upload documento POST /api/v1/query # Query RAG POST /api/v1/notebooklm/sync/{id} # Sincronizza notebook GET /api/v1/notebooklm/indexed # Lista sincronizzati ``` --- ## Autenticazione Header richiesto: ``` X-API-Key: your-api-key ``` --- Per informazioni complete vedi [SKILL.md](../SKILL.md)