bstraehle commited on
Commit
aa626d0
·
1 Parent(s): 5a2b90a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -198,7 +198,7 @@ gr.close_all()
198
  demo = gr.Interface(fn=invoke,
199
  inputs = [gr.Textbox(label = "OpenAI API Key", type = "password", lines = 1),
200
  gr.Radio([RAG_OFF, RAG_CHROMA, RAG_MONGODB], label = "Retrieval Augmented Generation", value = RAG_OFF),
201
- gr.Textbox(label = "Prompt", placeholder = "What is GPT-4?", lines = 1)],
202
  outputs = [gr.Textbox(label = "Completion", lines = 1)],
203
  title = "Generative AI - LLM & RAG",
204
  description = description)
 
198
  demo = gr.Interface(fn=invoke,
199
  inputs = [gr.Textbox(label = "OpenAI API Key", type = "password", lines = 1),
200
  gr.Radio([RAG_OFF, RAG_CHROMA, RAG_MONGODB], label = "Retrieval Augmented Generation", value = RAG_OFF),
201
+ gr.Textbox(label = "Prompt", value = "What are GPT-4's media capabilities in 5 emojis and 1 sentence?", lines = 1)],
202
  outputs = [gr.Textbox(label = "Completion", lines = 1)],
203
  title = "Generative AI - LLM & RAG",
204
  description = description)