aminazak commited on
Commit
0de5a79
·
verified ·
1 Parent(s): f4ac5d7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -3
app.py CHANGED
@@ -48,10 +48,14 @@ def chat_interface_function(msg, history):
48
 
49
  gr.ChatInterface(
50
  fn=chat_interface_function,
 
51
  title="Brochure Generator",
52
- description="Paste a URL and get a markdown-style summary brochure of the site.",
 
 
53
  examples=[
54
- "https://example.com",
55
  "https://www.bbc.com/news"
56
- ]
 
57
  ).launch()
 
48
 
49
  gr.ChatInterface(
50
  fn=chat_interface_function,
51
+ theme="soft",
52
  title="Brochure Generator",
53
+ description="Paste a URL in a correct way and press Enter to get a **markdown-style summary** of the site.",
54
+ retry_btn="Retry",
55
+ submit_btn="Generate Brochure"
56
  examples=[
57
+ "https://apple.com",
58
  "https://www.bbc.com/news"
59
+ ],
60
+
61
  ).launch()