Spaces:
Runtime error
Runtime error
Witold Wydmański
commited on
Commit
•
b36655e
1
Parent(s):
f56e8f0
feat: add summary of the app
Browse files
app.py
CHANGED
@@ -75,6 +75,8 @@ def modify_text(text, api_key, command, custom_command=None):
|
|
75 |
return response["choices"][0]["message"]["content"]
|
76 |
|
77 |
with gr.Blocks() as demo:
|
|
|
|
|
78 |
with gr.Row():
|
79 |
with gr.Column():
|
80 |
api_key = gr.Textbox(lines=1, label="OpenAI API Key")
|
|
|
75 |
return response["choices"][0]["message"]["content"]
|
76 |
|
77 |
with gr.Blocks() as demo:
|
78 |
+
gr.Markdown("# Meeting Summary")
|
79 |
+
gr.Markdown("This app uses OpenAI's GPT-3 to summarize a meeting transcript. You can either use the default commands or enter your own one. The app will automatically split the transcript into parts if it is too long for GPT-3 to handle.")
|
80 |
with gr.Row():
|
81 |
with gr.Column():
|
82 |
api_key = gr.Textbox(lines=1, label="OpenAI API Key")
|