SungYoon_AI / Ai.py
peterpeter8585's picture
Upload Ai.py
d5dfbb8 verified
raw
history blame
206 Bytes
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"
)