wisdomfunction commited on
Commit
fd4de92
·
1 Parent(s): c8a077f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +20 -1
app.py CHANGED
@@ -1,3 +1,22 @@
1
  import gradio as gr
2
 
3
- gr.load("models/wisdomfunction/GPT-2_London_Reccomender").launch()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  import gradio as gr
2
 
3
+
4
+
5
+ title = "GPT-Guide: London"
6
+ description = """
7
+
8
+ <img src="https://drive.google.com/uc?export=view&id=1GTsFsjgDFjcKVNgQ4I1C4QCvfhGDUs53">
9
+ This model is trained to provide recommendations for exploring London. Ask it about places to visit, eat, and experience in London!
10
+ """
11
+
12
+ article = "Want more tips? Check out [Visit London](https://www.visitlondon.com/) for comprehensive guides and ideas."
13
+
14
+ gr.Interface(
15
+ fn=predict,
16
+ inputs="textbox",
17
+ outputs="text",
18
+ title=title,
19
+ description=description,
20
+ article=article,
21
+ examples=[["Can you recommend an activity in London?"],["What are the best museums in London?"], ["Where can I find the best food in London?"],["What is the significance of pubs in London?"]],
22
+ ).launch(share=True)