heron_chat_blip / app.py
ymgaq's picture
update demo url to heron-demo.turing-motors.com
40ec7d5 verified
raw
history blame contribute delete
No virus
355 Bytes
import gradio as gr
title_markdown = "デモはこちら( https://heron-demo.turing-motors.com/ )に移転しました。"
def build_demo():
with gr.Blocks(title="Heron", theme=gr.themes.Base()) as demo:
gr.Markdown(title_markdown)
return demo
if __name__ == "__main__":
demo = build_demo()
demo.queue(max_size=10).launch()