Coloring's picture
feat: init
db32e48
raw
history blame contribute delete
No virus
288 Bytes
import gradio as gr
import modelscope_studio as mgr
with gr.Blocks() as demo:
mgr.Markdown("""
<accordion>
::accordion-title[Using `tool`]
```json
{"text": "glorious weather", "resolution": "1024*1024"}
```
</accordion>
""")
if __name__ == "__main__":
demo.queue().launch()