vericudebuget commited on
Commit
a476ebb
·
verified ·
1 Parent(s): 4d48541

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -9
app.py CHANGED
@@ -52,12 +52,11 @@ additional_inputs = [
52
  # Apply the Soft theme
53
 
54
  with gr.Blocks(theme=gr.themes.Soft()) as demo:
55
-
56
- gr.ChatInterface(
57
- fn=generate,
58
- chatbot=gr.Chatbot(show_label=True, show_share_button=True, show_copy_button=True, likeable=True, layout="panel"),
59
- additional_inputs=additional_inputs,
60
- title="ConvoLite",
61
- description="Remember! The AI might give incorrect information about people, locations, history, etc...",
62
- concurrency_limit=20,
63
- ).launch(show_api=False,)
 
52
  # Apply the Soft theme
53
 
54
  with gr.Blocks(theme=gr.themes.Soft()) as demo:
55
+ gr.ChatInterface(
56
+ fn=generate,
57
+ chatbot=gr.Chatbot(show_label=True, show_share_button=True, show_copy_button=True, likeable=True, layout="panel"),
58
+ additional_inputs=additional_inputs,
59
+ title="ConvoLite",
60
+ description="Remember! The AI might give incorrect information about people, locations, history, etc...",
61
+ concurrency_limit=20,
62
+ ).launch(show_api=False,)