lehmanc25 commited on
Commit
80d8630
1 Parent(s): a5de796

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -11,10 +11,11 @@ def chat_with_phi2(input_text):
11
 
12
  interface = gr.Interface(
13
  fn=chat_with_phi2,
14
- inputs=gr.inputs.Textbox(lines=2, placeholder="Ask something about W&L..."),
15
  outputs="text",
16
  title="W&L ChatGPT-like AI",
17
  description="Ask any question about Washington and Lee University!"
18
  )
19
 
20
  interface.launch()
 
 
11
 
12
  interface = gr.Interface(
13
  fn=chat_with_phi2,
14
+ inputs=gr.Textbox(lines=2, placeholder="Ask something about W&L..."),
15
  outputs="text",
16
  title="W&L ChatGPT-like AI",
17
  description="Ask any question about Washington and Lee University!"
18
  )
19
 
20
  interface.launch()
21
+