File size: 596 Bytes
0ad1293
34da01e
0ad1293
ba0fa12
 
 
 
 
 
 
 
34da01e
ba0fa12
 
 
 
 
b452bf0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import gradio as gr
from huggingface_hub import hf_hub_download

def yes(message, history):
    return "yes"

def vote(data: gr.LikeData):
    if data.liked:
        print("You upvoted this response: " + data.value["value"])
    else:
        print("You downvoted this response: " + data.value["value"])
hf_hub_download(repo_id="wenkai/FAPM", filename="model/checkpoint_bp1.pth")

with gr.Blocks() as demo:
    chatbot = gr.Chatbot(placeholder="<strong>Your Personal Yes-Man</strong><br>Ask Me Anything")
    gr.ChatInterface(fn=yes, type="messages", chatbot=chatbot)
    
demo.launch(share=True)