bstraehle commited on
Commit
f4ebba1
·
1 Parent(s): d871888

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -92,7 +92,7 @@ gr.close_all()
92
  demo = gr.Interface(fn=invoke,
93
  inputs = [gr.Textbox(label = "OpenAI API Key", value = "sk-", lines = 1),
94
  gr.Radio([True, False], label="Retrieval Augmented Generation", value = False),
95
- gr.Textbox(label = "Prompt", value = "explain gpt-4", lines = 1)],
96
  outputs = [gr.Textbox(label = "Completion", lines = 1)],
97
  title = "Generative AI - LLM & RAG",
98
  description = description)
 
92
  demo = gr.Interface(fn=invoke,
93
  inputs = [gr.Textbox(label = "OpenAI API Key", value = "sk-", lines = 1),
94
  gr.Radio([True, False], label="Retrieval Augmented Generation", value = False),
95
+ gr.Textbox(label = "Prompt", value = "Explain GPT-4", lines = 1)],
96
  outputs = [gr.Textbox(label = "Completion", lines = 1)],
97
  title = "Generative AI - LLM & RAG",
98
  description = description)