Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -85,7 +85,8 @@ with gr.Blocks() as demo:
|
|
85 |
with gr.Column():
|
86 |
api_key = gr.Textbox(lines=1,type='password', label="OpenAI API Key")
|
87 |
file = gr.inputs.File(label="Upload Meeting Transcript")
|
88 |
-
model = gr.Dropdown(options=['gpt-3.5-turbo', 'gpt-4'], label="OpenAI Model", default='gpt-3.5-turbo')
|
|
|
89 |
topic = gr.Textbox(lines=1, label="Meeting Topic")
|
90 |
with gr.Column():
|
91 |
command = gr.Dropdown(list(MODES.keys()), label="Command", value="Short summary")
|
|
|
85 |
with gr.Column():
|
86 |
api_key = gr.Textbox(lines=1,type='password', label="OpenAI API Key")
|
87 |
file = gr.inputs.File(label="Upload Meeting Transcript")
|
88 |
+
# model = gr.Dropdown(options=['gpt-3.5-turbo', 'gpt-4'], label="OpenAI Model", default='gpt-3.5-turbo')
|
89 |
+
model = gr.Dropdown(["gpt-3.5-turbo", "gpt-4"], label="Model", info="OpenAI LLM")
|
90 |
topic = gr.Textbox(lines=1, label="Meeting Topic")
|
91 |
with gr.Column():
|
92 |
command = gr.Dropdown(list(MODES.keys()), label="Command", value="Short summary")
|