Spaces:
Runtime error
Runtime error
Commit ·
083e518
1
Parent(s): a3822a4
Update app.py
Browse files
app.py
CHANGED
|
@@ -40,13 +40,13 @@ def response(message, history):
|
|
| 40 |
|
| 41 |
transcribe_interface = gr.Interface(
|
| 42 |
fn=process_and_transcribe,
|
| 43 |
-
inputs=['text', 'text', gr.components.Radio(['gpt-3.5-turbo', 'gpt-3.5-turbo-16k'])],
|
| 44 |
outputs=['text'],
|
| 45 |
title="Summarize",
|
| 46 |
description=""" Let's Summarize a YouTube Video\n
|
| 47 |
1. Paste the YouTube Video Link.\n
|
| 48 |
2. Provide the OpenAI API Key (For chatting with GPT Models).\n
|
| 49 |
-
3. Choose the Model, GPT-3.5-turbo for smaller summaries, GPT-3.5-turbo-16k for larger context\n
|
| 50 |
4. Go to the Chat interface\n
|
| 51 |
5. Type 'Summarize'\n
|
| 52 |
6. Done!\n
|
|
|
|
| 40 |
|
| 41 |
transcribe_interface = gr.Interface(
|
| 42 |
fn=process_and_transcribe,
|
| 43 |
+
inputs=['text', 'text', gr.components.Radio(['gpt-3.5-turbo', 'gpt-3.5-turbo-16k','gpt-4'])],
|
| 44 |
outputs=['text'],
|
| 45 |
title="Summarize",
|
| 46 |
description=""" Let's Summarize a YouTube Video\n
|
| 47 |
1. Paste the YouTube Video Link.\n
|
| 48 |
2. Provide the OpenAI API Key (For chatting with GPT Models).\n
|
| 49 |
+
3. Choose the Model, GPT-3.5-turbo for smaller summaries, GPT-3.5-turbo-16k for larger context, GPT-4 for advanced reasoning\n
|
| 50 |
4. Go to the Chat interface\n
|
| 51 |
5. Type 'Summarize'\n
|
| 52 |
6. Done!\n
|