hectorjelly commited on
Commit
91221dc
1 Parent(s): 6a734b3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -57,6 +57,7 @@ def ask_joe(api_key, text):
57
 
58
  return model_message
59
 
60
- iface = gr.Interface(fn=ask_joe, inputs=[gr.inputs.Textbox(label="OpenAI API Key"), gr.inputs.Textbox(label="Enter your question here. More detail = Better results")], outputs="Joe's Response")
 
61
 
62
  iface.launch()
 
57
 
58
  return model_message
59
 
60
+ iface = gr.Interface(fn=ask_joe, inputs=[gr.inputs.Textbox(label="OpenAI API Key"), gr.inputs.Textbox(label="Enter your question here. More detail = Better results")], outputs=gr.outputs.Textbox(label="Joe's Response"))
61
+
62
 
63
  iface.launch()