File size: 563 Bytes
1a0db62
8abdea8
1a0db62
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
62b6bd5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import gradio as gr
import spaces
from load_model import pipe
from utils import Translation


@spaces.GPU
def reply(message, history):
    txt = Translation(message, "en")
    if txt.original == "en":
        response = pipe(message)
        return response[0]["generated_text"]
    else:
        translation = txt.translatef()
        response = pipe(translation)
        t = Translation(response[0]["generated_text"], txt.original)
        res = t.translatef()
        return res


demo = gr.ChatInterface(fn=reply, title="Multilingual-Bloom Bot")
demo.launch()