yama commited on
Commit
d40e32c
·
1 Parent(s): 9007f85

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -380,12 +380,13 @@ with demo:
380
  with gr.Row():
381
  with gr.Column():
382
  gr.Textbox(lines=1, label="openai_key", type="password")
383
- gr.TextArea(label="プロンプト", value="""会議の文字起こしが渡されます。
384
 
385
  この会議のサマリーをMarkdown形式で作成してください。サマリーは、以下のような形式で書いてください。
386
  - 会議の目的
387
  - 会議の内容
388
  - 会議の結果""")
389
- gr.Textbox(label="会議サマリー")
 
390
 
391
  demo.launch(debug=True)
 
380
  with gr.Row():
381
  with gr.Column():
382
  gr.Textbox(lines=1, label="openai_key", type="password")
383
+ gr.TextArea(label="prompt", value="""会議の文字起こしが渡されます。
384
 
385
  この会議のサマリーをMarkdown形式で作成してください。サマリーは、以下のような形式で書いてください。
386
  - 会議の目的
387
  - 会議の内容
388
  - 会議の結果""")
389
+ gr.Textbox(label="transcription_summary")
390
+
391
 
392
  demo.launch(debug=True)