aakash0017's picture
Upload folder using huggingface_hub
7b5e0ec
raw
history blame contribute delete
188 Bytes
import gradio as gr
from conversation import make_conversation, auth_function
import random
demo = gr.ChatInterface(make_conversation).queue()
demo.launch(auth=auth_function, share=True)