Coloring's picture
feat: add layout template `coder_artifacts`
f18a2c3
raw
history blame
645 Bytes
import gradio as gr
import modelscope_studio.components.antdx as antdx
import modelscope_studio.components.base as ms
with gr.Blocks() as demo:
with ms.Application():
with antdx.XProvider(): # or antd.ConfigProvider
antdx.Welcome(
icon=
"https://mdn.alipayobjects.com/huamei_iwk9zp/afts/img/A*s5sNRo5LjfQAAAAAAAAAAAAADgCCAQ/fmt.webp",
title="Hello, I'm Ant Design X",
description=
"Base on Ant Design, AGI product interface solution, create a better intelligent vision~"
)
if __name__ == "__main__":
demo.queue().launch()