SungYoon_AI / Ai.py
peterpeter8585's picture
Update Ai.py
376aa8d verified
raw
history blame
No virus
212 Bytes
import gradio as gr
BOT_AVATAR="OpenAI_logo.png"
chatbot = gr.Chatbot(
label="OpenGPT-4o-Chatty",
avatar_images=["user.png", BOT_AVATAR],
show_copy_button=True,
likeable=True,
layout="panel"
)