52100303-TranPhuocSang's picture
Update model, RAG with CTransformer
24988f9
raw
history blame
No virus
227 Bytes
import gradio as gr
def echo(message, history):
print(message)
print('---')
print(history)
return message
demo = gr.ChatInterface(fn=echo, examples=["hello", "hola", "merhaba"], title="Echo Bot")
demo.launch()