bstraehle commited on
Commit
c442cb8
·
1 Parent(s): c4e6b0f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -46,7 +46,7 @@ description = """The app demonstrates how to use a <strong>Large Language Model<
46
 
47
  gr.close_all()
48
  demo = gr.Interface(fn=invoke,
49
- inputs = [gr.Textbox(label = "OpenAI API Key", default = "sk-", lines = 1), gr.Textbox(label = "YouTube URL", default = "https://www.youtube.com/watch?v=3cQNkIrg-Tk", lines = 1), gr.Textbox(label = "Prompt", default = "What is the sentiment of the song?", lines = 1)],
50
  outputs = [gr.Textbox(label = "Completion", lines = 1)],
51
  title = "Generative AI - LLM & RAG",
52
  description = description)
 
46
 
47
  gr.close_all()
48
  demo = gr.Interface(fn=invoke,
49
+ inputs = [gr.Textbox(label = "OpenAI API Key", value = "sk-", lines = 1), gr.Textbox(label = "YouTube URL", value = "https://www.youtube.com/watch?v=3cQNkIrg-Tk", lines = 1), gr.Textbox(label = "Prompt", value = "Translate song into German", lines = 1)],
50
  outputs = [gr.Textbox(label = "Completion", lines = 1)],
51
  title = "Generative AI - LLM & RAG",
52
  description = description)