├── .github └── workflows │ └── sync_with_hf.yml ├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── constants.py ├── examples └── 1310.4546v1.pdf ├── examples_cached └── .gitkeep ├── prompts.py ├── requirements.txt ├── schema.py └── utils.py /.github/workflows/sync_with_hf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielchua/open-notebooklm/HEAD/.github/workflows/sync_with_hf.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielchua/open-notebooklm/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielchua/open-notebooklm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielchua/open-notebooklm/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielchua/open-notebooklm/HEAD/app.py -------------------------------------------------------------------------------- /constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielchua/open-notebooklm/HEAD/constants.py -------------------------------------------------------------------------------- /examples/1310.4546v1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielchua/open-notebooklm/HEAD/examples/1310.4546v1.pdf -------------------------------------------------------------------------------- /examples_cached/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielchua/open-notebooklm/HEAD/prompts.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielchua/open-notebooklm/HEAD/requirements.txt -------------------------------------------------------------------------------- /schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielchua/open-notebooklm/HEAD/schema.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielchua/open-notebooklm/HEAD/utils.py --------------------------------------------------------------------------------