Spaces:
Runtime error
Runtime error
Eric Botti
commited on
Commit
·
8accfdb
1
Parent(s):
e18ce20
huggingface README update.
Browse files
README.md
CHANGED
@@ -1,21 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
# Google Meet Transcript AI Notes
|
2 |
|
3 |
## Description
|
4 |
|
5 |
-
A
|
6 |
options configured, Google Meet will automatically create an AI transcript of your meetings which is saved to Google Drive.
|
7 |
-
Often it is more useful to see just the notes from a meeting rather than the full transcript. This
|
8 |
prompts to create a detailed summary of the meeting from the transcript, as if it was taking notes in real time during
|
9 |
the meeting.
|
10 |
|
11 |
You will need an OpenAI API key to use this project.
|
12 |
|
|
|
|
|
|
|
|
|
13 |
## Installation
|
14 |
|
15 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
|
17 |
-
|
18 |
|
19 |
-
|
|
|
20 |
|
21 |
-
|
|
|
1 |
+
---
|
2 |
+
title: Google Meet Transcript Notetaker
|
3 |
+
emoji: 📝
|
4 |
+
colorFrom: blue
|
5 |
+
colorTo: purple
|
6 |
+
sdk: streamlit
|
7 |
+
sdk_version: 1.24.0
|
8 |
+
app_file: app.py
|
9 |
+
pinned: false
|
10 |
+
---
|
11 |
+
|
12 |
# Google Meet Transcript AI Notes
|
13 |
|
14 |
## Description
|
15 |
|
16 |
+
A Streamlit app designed to create relevant notes from a transcript of a Google Meet meeting. Currently, with the proper,
|
17 |
options configured, Google Meet will automatically create an AI transcript of your meetings which is saved to Google Drive.
|
18 |
+
Often it is more useful to see just the notes from a meeting rather than the full transcript. This app uses OpenAI
|
19 |
prompts to create a detailed summary of the meeting from the transcript, as if it was taking notes in real time during
|
20 |
the meeting.
|
21 |
|
22 |
You will need an OpenAI API key to use this project.
|
23 |
|
24 |
+
## Hugging Face Space
|
25 |
+
|
26 |
+
This a demo of this app is hosted as a [Hugging Face Space](https://huggingface.co/spaces/ericbotti/transcript-notetaker).
|
27 |
+
|
28 |
## Installation
|
29 |
|
30 |
+
install the requirements from the requirements.txt using:
|
31 |
+
|
32 |
+
``
|
33 |
+
pip install -r requirements.txt
|
34 |
+
``
|
35 |
+
|
36 |
+
## Usage
|
37 |
|
38 |
+
Enter your API key in the text input field, and upload your transcript as a .txt file.
|
39 |
|
40 |
+
You should then be able to press the "Create Notes" button which will then start summarization process.
|
41 |
+
This can take a few minutes, depending on the size of your file.
|
42 |
|
43 |
+
When completed the notes will display on the app, and you will be able to download them in a file called "notes.md"
|