File size: 741 Bytes
27a0fa4
89e25b9
27a0fa4
aacf43f
27a0fa4
89e25b9
aacf43f
7f8ed5b
aacf43f
89e25b9
 
aacf43f
89e25b9
aacf43f
173c591
 
 
89e25b9
3358edf
173c591
 
 
 
71d71c3
 
aacf43f
89e25b9
aacf43f
89e25b9
aacf43f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import gradio as gr
from huggingface_hub import InferenceClient

client = InferenceClient("HuggingFaceH4/zephyr-7b-beta")

def respond(message, history):
    
    messages = [{"role": "system", "content": "You are a bookworm chatbot. Always connect your response back to books."}]
    
    if history:
        messages.extend(history)
        
    messages.append({"role": "user", "content": message})
    
    response = ""
    
    for message in client.chat_completion(
        messages,
        max_tokens=150,
        temperature=0.2,
        stream=True
    ):
        token = message.choices[0].delta.content
        response += token
        yield response
    

chatbot = gr.ChatInterface(respond, type="messages")

chatbot.launch()