closeai / app.py
ashwitha15's picture
Create app.py
d630c6c verified
Raw
History Blame Contribute Delete
250 Bytes
from transformers import pipeline
pipe = pipeline("text-generation", model="vanilladucky/Friends_chatting_bot")
def fun2(text):
ans= pipe(text)
return ans[0]['generated_text']
obj2= grd.Interface(fun2, "text", "text",title="app 1")
obj2.launch()