File size: 773 Bytes
c8a077f
 
fd4de92
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import gradio as gr



title = "GPT-Guide: London"
description = """

<img src="https://drive.google.com/uc?export=view&id=1GTsFsjgDFjcKVNgQ4I1C4QCvfhGDUs53">
This model is trained to provide recommendations for exploring London. Ask it about places to visit, eat, and experience in London!
"""

article = "Want more tips? Check out [Visit London](https://www.visitlondon.com/) for comprehensive guides and ideas."

gr.Interface(
    fn=predict,
    inputs="textbox",
    outputs="text",
    title=title,
    description=description,
    article=article,
    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?"]],
).launch(share=True)