mobenta commited on
Commit
8e35477
·
verified ·
1 Parent(s): 4caea32

Upload 7 files

Browse files
Files changed (7) hide show
  1. .gitignore +165 -0
  2. LICENSE +202 -0
  3. README.md +68 -0
  4. app.py +291 -0
  5. prompts.py +55 -0
  6. requirements.txt +6 -0
  7. utils.py +32 -0
.gitignore ADDED
@@ -0,0 +1,165 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ share/python-wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+ MANIFEST
28
+
29
+ # PyInstaller
30
+ # Usually these files are written by a python script from a template
31
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
32
+ *.manifest
33
+ *.spec
34
+
35
+ # Installer logs
36
+ pip-log.txt
37
+ pip-delete-this-directory.txt
38
+
39
+ # Unit test / coverage reports
40
+ htmlcov/
41
+ .tox/
42
+ .nox/
43
+ .coverage
44
+ .coverage.*
45
+ .cache
46
+ nosetests.xml
47
+ coverage.xml
48
+ *.cover
49
+ *.py,cover
50
+ .hypothesis/
51
+ .pytest_cache/
52
+ cover/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Django stuff:
59
+ *.log
60
+ local_settings.py
61
+ db.sqlite3
62
+ db.sqlite3-journal
63
+
64
+ # Flask stuff:
65
+ instance/
66
+ .webassets-cache
67
+
68
+ # Scrapy stuff:
69
+ .scrapy
70
+
71
+ # Sphinx documentation
72
+ docs/_build/
73
+
74
+ # PyBuilder
75
+ .pybuilder/
76
+ target/
77
+
78
+ # Jupyter Notebook
79
+ .ipynb_checkpoints
80
+
81
+ # IPython
82
+ profile_default/
83
+ ipython_config.py
84
+
85
+ # pyenv
86
+ # For a library or package, you might want to ignore these files since the code is
87
+ # intended to run in multiple environments; otherwise, check them in:
88
+ # .python-version
89
+
90
+ # pipenv
91
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
93
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
94
+ # install all needed dependencies.
95
+ #Pipfile.lock
96
+
97
+ # poetry
98
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
99
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
100
+ # commonly ignored for libraries.
101
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
102
+ #poetry.lock
103
+
104
+ # pdm
105
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
106
+ #pdm.lock
107
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
108
+ # in version control.
109
+ # https://pdm.fming.dev/latest/usage/project/#working-with-version-control
110
+ .pdm.toml
111
+ .pdm-python
112
+ .pdm-build/
113
+
114
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
115
+ __pypackages__/
116
+
117
+ # Celery stuff
118
+ celerybeat-schedule
119
+ celerybeat.pid
120
+
121
+ # SageMath parsed files
122
+ *.sage.py
123
+
124
+ # Environments
125
+ .env
126
+ .venv
127
+ env/
128
+ venv/
129
+ ENV/
130
+ env.bak/
131
+ venv.bak/
132
+
133
+ # Spyder project settings
134
+ .spyderproject
135
+ .spyproject
136
+
137
+ # Rope project settings
138
+ .ropeproject
139
+
140
+ # mkdocs documentation
141
+ /site
142
+
143
+ # mypy
144
+ .mypy_cache/
145
+ .dmypy.json
146
+ dmypy.json
147
+
148
+ # Pyre type checker
149
+ .pyre/
150
+
151
+ # pytype static type analyzer
152
+ .pytype/
153
+
154
+ # Cython debug symbols
155
+ cython_debug/
156
+
157
+ # PyCharm
158
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
159
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
160
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
161
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
162
+ #.idea/
163
+
164
+ gradio_cached_examples/
165
+ .DS_Store
LICENSE ADDED
@@ -0,0 +1,202 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for describing the origin of the Work and
142
+ reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright 2024 Gabriel Chua
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
README.md ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ title: Open NotebookLM
3
+ emoji: 🎙️
4
+ colorFrom: purple
5
+ colorTo: red
6
+ sdk: gradio
7
+ sdk_version: 4.44.0
8
+ app_file: app.py
9
+ pinned: false
10
+ ---
11
+
12
+ # Open NotebookLM
13
+
14
+ ## Overview
15
+
16
+ This project is inspired by the NotebookLM tool, and implements it with open-source LLMs and text-to-speech models. This tool processes the content of a PDF, generates a natural dialogue suitable for an audio podcast, and outputs it as an MP3 file.
17
+
18
+ ## Features
19
+
20
+ - **Convert PDF to Podcast:** Upload a PDF and convert its content into a podcast dialogue.
21
+ - **Engaging Dialogue:** The generated dialogue is designed to be informative and entertaining.
22
+ - **User-friendly Interface:** Simple interface using Gradio for easy interaction.
23
+
24
+ ## Installation
25
+
26
+ To set up the project, follow these steps:
27
+
28
+ 1. **Clone the repository:**
29
+ ```bash
30
+ git clone https://github.com/gabrielchua/open-notebooklm.git
31
+ cd open-notebooklm
32
+ ```
33
+
34
+ 2. **Create a virtual environment and activate it:**
35
+ ```bash
36
+ python -m venv .venv
37
+ source .venv/bin/activate
38
+ ```
39
+
40
+ 3. **Install the required packages:**
41
+ ```bash
42
+ pip install -r requirements.txt
43
+ ```
44
+
45
+ ## Usage
46
+
47
+ 1. **Set up API Key(s):**
48
+ For this project, I am using LLama 3.1 405B hosted on Fireworks API as its JSON Mode supports passing a pydantic object. So, please set the API key as the `FIREWORKS_API_KEY` environment variable
49
+
50
+ 2. **Run the application:**
51
+ ```bash
52
+ python app.py
53
+ ```
54
+ This will launch a Gradio interface in your web browser.
55
+
56
+ 3. **Upload a PDF:**
57
+ Upload the PDF document you want to convert into a podcast.
58
+
59
+ 4. **Generate Audio:**
60
+ Click the button to start the conversion process. The output will be an MP3 file containing the podcast dialogue.
61
+
62
+ ## Acknowledgements
63
+
64
+ This project is forked from [`knowsuchagency/pdf-to-podcast`](https://github.com/knowsuchagency/pdf-to-podcast)
65
+
66
+ ## License
67
+
68
+ This project is licensed under the Apache 2.0 License. See the [LICENSE](LICENSE) file for more information.
app.py ADDED
@@ -0,0 +1,291 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ main.py
3
+ """
4
+
5
+ # Standard library imports
6
+ import glob
7
+ import os
8
+ import time
9
+ from pathlib import Path
10
+ from tempfile import NamedTemporaryFile
11
+ from typing import List, Literal, Tuple, Optional
12
+
13
+ # Third-party imports
14
+ import gradio as gr
15
+ from loguru import logger
16
+ from pydantic import BaseModel, Field
17
+ from pypdf import PdfReader
18
+ from pydub import AudioSegment
19
+
20
+ # Local imports
21
+ from prompts import SYSTEM_PROMPT
22
+ from utils import generate_script, generate_podcast_audio, parse_url
23
+
24
+
25
+ class DialogueItem(BaseModel):
26
+ """A single dialogue item."""
27
+
28
+ speaker: Literal["Host (Jane)", "Guest"]
29
+ text: str
30
+
31
+
32
+ class ShortDialogue(BaseModel):
33
+ """The dialogue between the host and guest."""
34
+
35
+ scratchpad: str
36
+ name_of_guest: str
37
+ dialogue: List[DialogueItem] = Field(..., description="A list of dialogue items, typically between 5 to 9 items")
38
+
39
+
40
+ class MediumDialogue(BaseModel):
41
+ """The dialogue between the host and guest."""
42
+
43
+ scratchpad: str
44
+ name_of_guest: str
45
+ dialogue: List[DialogueItem] = Field(..., description="A list of dialogue items, typically between 8 to 13 items")
46
+
47
+
48
+ LANGUAGE_MAPPING = {
49
+ "English": "en",
50
+ "Chinese": "zh",
51
+ "French": "fr",
52
+ "German": "de",
53
+ "Hindi": "hi",
54
+ "Italian": "it",
55
+ "Japanese": "ja",
56
+ "Korean": "ko",
57
+ "Polish": "pl",
58
+ "Portuguese": "pt",
59
+ "Russian": "ru",
60
+ "Spanish": "es",
61
+ "Turkish": "tr"
62
+ }
63
+
64
+ MELO_TTS_LANGUAGE_MAPPING = {
65
+ "en": "EN",
66
+ "es": "ES",
67
+ "fr": "FR",
68
+ "zh": "ZJ",
69
+ "ja": "JP",
70
+ "ko": "KR",
71
+ }
72
+
73
+
74
+
75
+
76
+ def generate_podcast(
77
+ files: List[str],
78
+ url: Optional[str],
79
+ question: Optional[str],
80
+ tone: Optional[str],
81
+ length: Optional[str],
82
+ language: str,
83
+ use_advanced_audio: bool,
84
+ ) -> Tuple[str, str]:
85
+ """Generate the audio and transcript from the PDFs and/or URL."""
86
+
87
+
88
+
89
+ text = ""
90
+
91
+ # Check if the selected language is supported by MeloTTS when not using advanced audio
92
+ if not use_advanced_audio and language in ['German', 'Hindi', 'Italian', 'Polish', 'Portuguese', 'Russian', 'Turkish']:
93
+ raise gr.Error(f"The selected language '{language}' is not supported without advanced audio generation. Please enable advanced audio generation or choose a supported language.")
94
+
95
+ # Check if at least one input is provided
96
+ if not files and not url:
97
+ raise gr.Error("Please provide at least one PDF file or a URL.")
98
+
99
+ # Process PDFs if any
100
+ if files:
101
+ for file in files:
102
+ if not file.lower().endswith(".pdf"):
103
+ raise gr.Error(
104
+ f"File {file} is not a PDF. Please upload only PDF files."
105
+ )
106
+
107
+ try:
108
+ with Path(file).open("rb") as f:
109
+ reader = PdfReader(f)
110
+ text += "\n\n".join([page.extract_text() for page in reader.pages])
111
+ except Exception as e:
112
+ raise gr.Error(f"Error reading the PDF file {file}: {str(e)}")
113
+
114
+ # Process URL if provided
115
+ if url:
116
+ try:
117
+ url_text = parse_url(url)
118
+ text += "\n\n" + url_text
119
+ except ValueError as e:
120
+ raise gr.Error(str(e))
121
+
122
+ # Check total character count
123
+ if len(text) > 100000:
124
+ raise gr.Error(
125
+ "The total content is too long. Please ensure the combined text from PDFs and URL is fewer than ~100,000 characters."
126
+ )
127
+
128
+
129
+ # Modify the system prompt based on the user input
130
+ modified_system_prompt = SYSTEM_PROMPT
131
+ if question:
132
+ modified_system_prompt += f"\n\PLEASE ANSWER THE FOLLOWING QN: {question}"
133
+ if tone:
134
+ modified_system_prompt += f"\n\nTONE: The tone of the podcast should be {tone}."
135
+ if length:
136
+ length_instructions = {
137
+ "Short (1-2 min)": "Keep the podcast brief, around 1-2 minutes long.",
138
+ "Medium (3-5 min)": "Aim for a moderate length, about 3-5 minutes.",
139
+ }
140
+ modified_system_prompt += f"\n\nLENGTH: {length_instructions[length]}"
141
+ if language:
142
+ modified_system_prompt += (
143
+ f"\n\nOUTPUT LANGUAGE <IMPORTANT>: The the podcast should be {language}."
144
+ )
145
+
146
+ # Call the LLM
147
+ if length == "Short (1-2 min)":
148
+ llm_output = generate_script(modified_system_prompt, text, ShortDialogue)
149
+ else:
150
+ llm_output = generate_script(modified_system_prompt, text, MediumDialogue)
151
+ logger.info(f"Generated dialogue: {llm_output}")
152
+
153
+ # Process the dialogue
154
+ audio_segments = []
155
+ transcript = ""
156
+ total_characters = 0
157
+
158
+ for line in llm_output.dialogue:
159
+ logger.info(f"Generating audio for {line.speaker}: {line.text}")
160
+ if line.speaker == "Host (Jane)":
161
+ speaker = f"**Jane**: {line.text}"
162
+ else:
163
+ speaker = f"**{llm_output.name_of_guest}**: {line.text}"
164
+ transcript += speaker + "\n\n"
165
+ total_characters += len(line.text)
166
+
167
+ language_for_tts = LANGUAGE_MAPPING[language]
168
+
169
+ if not use_advanced_audio:
170
+ language_for_tts = MELO_TTS_LANGUAGE_MAPPING[language_for_tts]
171
+
172
+ # Get audio file path
173
+ audio_file_path = generate_podcast_audio(
174
+ line.text, line.speaker, language_for_tts, use_advanced_audio
175
+ )
176
+ # Read the audio file into an AudioSegment
177
+ audio_segment = AudioSegment.from_file(audio_file_path)
178
+ audio_segments.append(audio_segment)
179
+
180
+ # Concatenate all audio segments
181
+ combined_audio = sum(audio_segments)
182
+
183
+ # Export the combined audio to a temporary file
184
+ temporary_directory = "./gradio_cached_examples/tmp/"
185
+ os.makedirs(temporary_directory, exist_ok=True)
186
+
187
+ temporary_file = NamedTemporaryFile(
188
+ dir=temporary_directory,
189
+ delete=False,
190
+ suffix=".mp3",
191
+ )
192
+ combined_audio.export(temporary_file.name, format="mp3")
193
+
194
+ # Delete any files in the temp directory that end with .mp3 and are over a day old
195
+ for file in glob.glob(f"{temporary_directory}*.mp3"):
196
+ if os.path.isfile(file) and time.time() - os.path.getmtime(file) > 24 * 60 * 60:
197
+ os.remove(file)
198
+
199
+ logger.info(f"Generated {total_characters} characters of audio")
200
+
201
+ return temporary_file.name, transcript
202
+
203
+
204
+ demo = gr.Interface(
205
+ title="Open NotebookLM",
206
+ description="""
207
+
208
+ <table style="border-collapse: collapse; border: none; padding: 20px;">
209
+ <tr style="border: none;">
210
+ <td style="border: none; vertical-align: top; padding-right: 30px; padding-left: 30px;">
211
+ <img src="https://raw.githubusercontent.com/gabrielchua/daily-ai-papers/main/_includes/icon.png" alt="Open NotebookLM" width="120" style="margin-bottom: 10px;">
212
+ </td>
213
+ <td style="border: none; vertical-align: top; padding: 10px;">
214
+ <p style="margin-bottom: 15px;"><strong>Convert</strong> your PDFs into podcasts with open-source AI models (Llama 3.1 405B and MeloTTS).</p>
215
+ <p style="margin-top: 15px;">Note: Only the text content of the PDFs will be processed. Images and tables are not included. The total content should be no more than 100,000 characters due to the context length of Llama 3.1 405B.</p>
216
+ </td>
217
+ </tr>
218
+ </table>
219
+ """,
220
+ fn=generate_podcast,
221
+ inputs=[
222
+ gr.File(
223
+ label="1. 📄 Upload your PDF(s)", file_types=[".pdf"], file_count="multiple"
224
+ ),
225
+ gr.Textbox(
226
+ label="2. 🔗 Paste a URL (optional)",
227
+ placeholder="Enter a URL to include its content",
228
+ ),
229
+ gr.Textbox(label="3. 🤔 Do you have a specific question or topic in mind?"),
230
+ gr.Dropdown(
231
+ choices=["Fun", "Formal"],
232
+ label="4. 🎭 Choose the tone",
233
+ value="Fun"
234
+ ),
235
+ gr.Dropdown(
236
+ choices=["Short (1-2 min)", "Medium (3-5 min)"],
237
+ label="5. ⏱️ Choose the length",
238
+ value="Medium (3-5 min)"
239
+ ),
240
+ gr.Dropdown(
241
+ choices=list(LANGUAGE_MAPPING.keys()),
242
+ value="English",
243
+ label="6. 🌐 Choose the language"
244
+ ),
245
+ gr.Checkbox(
246
+ label="7. 🔄 Use advanced audio generation? (Experimental)",
247
+ value=False
248
+ )
249
+ ],
250
+ outputs=[
251
+ gr.Audio(label="Podcast", format="mp3"),
252
+ gr.Markdown(label="Transcript"),
253
+ ],
254
+ allow_flagging="never",
255
+ api_name="generate_podcast",
256
+ theme=gr.themes.Soft(),
257
+ concurrency_limit=3,
258
+ examples=[
259
+ [
260
+ [str(Path("examples/1310.4546v1.pdf"))],
261
+ "",
262
+ "Explain this paper to me like I'm 5 years old",
263
+ "Fun",
264
+ "Short (1-2 min)",
265
+ "English",
266
+ True
267
+ ],
268
+ [
269
+ [],
270
+ "https://en.wikipedia.org/wiki/Hugging_Face",
271
+ "How did Hugging Face become so successful?",
272
+ "Fun",
273
+ "Short (1-2 min)",
274
+ "English",
275
+ False
276
+ ],
277
+ [
278
+ [],
279
+ "https://simple.wikipedia.org/wiki/Taylor_Swift",
280
+ "Why is Taylor Swift so popular?",
281
+ "Fun",
282
+ "Short (1-2 min)",
283
+ "English",
284
+ False
285
+ ],
286
+ ],
287
+ cache_examples=True,
288
+ )
289
+
290
+ if __name__ == "__main__":
291
+ demo.launch(show_api=True)
prompts.py ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ prompts.py
3
+ """
4
+
5
+ SYSTEM_PROMPT = """
6
+ You are a world-class podcast producer tasked with transforming the provided input text into an engaging and informative podcast script. The input may be unstructured or messy, sourced from PDFs or web pages. Your goal is to extract the most interesting and insightful content for a compelling podcast discussion.
7
+
8
+ # Steps to Follow:
9
+
10
+ 1. **Analyze the Input:**
11
+ Carefully examine the text, identifying key topics, points, and interesting facts or anecdotes that could drive an engaging podcast conversation. Disregard irrelevant information or formatting issues.
12
+
13
+ 2. **Brainstorm Ideas:**
14
+ In the `<scratchpad>`, creatively brainstorm ways to present the key points engagingly. Consider:
15
+ - Analogies, storytelling techniques, or hypothetical scenarios to make content relatable
16
+ - Ways to make complex topics accessible to a general audience
17
+ - Thought-provoking questions to explore during the podcast
18
+ - Creative approaches to fill any gaps in the information
19
+
20
+ 3. **Craft the Dialogue:**
21
+ Develop a natural, conversational flow between the host (Jane) and the guest speaker (the author or an expert on the topic). Incorporate:
22
+ - The best ideas from your brainstorming session
23
+ - Clear explanations of complex topics
24
+ - An engaging and lively tone to captivate listeners
25
+ - A balance of information and entertainment
26
+
27
+ Rules for the dialogue:
28
+ - The host (Jane) always initiates the conversation and interviews the guest
29
+ - Include thoughtful questions from the host to guide the discussion
30
+ - Incorporate natural speech patterns, including occasional verbal fillers (e.g., "um," "well," "you know")
31
+ - Allow for natural interruptions and back-and-forth between host and guest
32
+ - Ensure the guest's responses are substantiated by the input text, avoiding unsupported claims
33
+ - Maintain a PG-rated conversation appropriate for all audiences
34
+ - Avoid any marketing or self-promotional content from the guest
35
+ - The host concludes the conversation
36
+
37
+ 4. **Summarize Key Insights:**
38
+ Naturally weave a summary of key points into the closing part of the dialogue. This should feel like a casual conversation rather than a formal recap, reinforcing the main takeaways before signing off.
39
+
40
+ 5. **Maintain Authenticity:**
41
+ Throughout the script, strive for authenticity in the conversation. Include:
42
+ - Moments of genuine curiosity or surprise from the host
43
+ - Instances where the guest might briefly struggle to articulate a complex idea
44
+ - Light-hearted moments or humor when appropriate
45
+ - Brief personal anecdotes or examples that relate to the topic (within the bounds of the input text)
46
+
47
+ 6. **Consider Pacing and Structure:**
48
+ Ensure the dialogue has a natural ebb and flow:
49
+ - Start with a strong hook to grab the listener's attention
50
+ - Gradually build complexity as the conversation progresses
51
+ - Include brief "breather" moments for listeners to absorb complex information
52
+ - End on a high note, perhaps with a thought-provoking question or a call-to-action for listeners
53
+
54
+ Remember: Always reply in valid JSON format, without code blocks. Begin directly with the JSON output.
55
+ """
requirements.txt ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+
2
+ gradio==3.14.0
3
+ gitpython==3.1.30
4
+ transformers==4.22.0
5
+ scipy==1.9.3
6
+ bark
utils.py ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import os
3
+ from transformers import pipeline, AutoTokenizer, AutoModelForCausalLM
4
+ from bark import SAMPLE_RATE, generate_audio, preload_models
5
+ from scipy.io.wavfile import write as write_wav
6
+
7
+ # Load local models for LLM and TTS
8
+ preload_models()
9
+
10
+ # Load the Hugging Face model locally
11
+ tokenizer = AutoTokenizer.from_pretrained("EleutherAI/gpt-neo-2.7B")
12
+ model = AutoModelForCausalLM.from_pretrained("EleutherAI/gpt-neo-2.7B")
13
+ generator = pipeline("text-generation", model=model, tokenizer=tokenizer)
14
+
15
+ def generate_script(system_prompt: str, input_text: str, output_model=None):
16
+ """Generate dialogue script using local GPT-Neo model."""
17
+ try:
18
+ # Generate text using the local Hugging Face model
19
+ response = generator(system_prompt + input_text, max_length=1000, do_sample=True)
20
+ dialogue = response[0]["generated_text"]
21
+ return dialogue
22
+ except Exception as e:
23
+ return f"Error generating script: {str(e)}"
24
+
25
+ def generate_podcast_audio(text: str, output_file="podcast_audio.wav"):
26
+ """Generate audio from text using Bark (local TTS)."""
27
+ try:
28
+ audio_array = generate_audio(text)
29
+ write_wav(output_file, SAMPLE_RATE, audio_array)
30
+ return output_file
31
+ except Exception as e:
32
+ return f"Error generating audio: {str(e)}"