Spaces:
Sleeping
Sleeping
File size: 206 Bytes
af57a37 |
1 2 3 4 5 6 7 8 9 |
import gradio as gr
BOT_AVATAR="OpenAI_logo.png"
chatbot = gr.Chatbot(
label="OpenGPT-4o-Chatty",
avatar_images=[None, BOT_AVATAR],
show_copy_button=True,
likeable=True,
layout="panel"
) |