Spaces:
Sleeping
Sleeping
File size: 143 Bytes
6a9c9f9 |
1 2 3 4 5 6 7 8 |
import gradio as gr
import requests
from chatbot import Chatbot
chatbot = Chatbot()
gr.ChatInterface(chatbot.chat, type="messages").launch()
|