Spaces:
Running
Running
File size: 758 Bytes
aa39585 176823e aa39585 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
import json
import gradio as gr
import modelscope_studio as mgr
# echarts options, see: https://echarts.apache.org/en/index.html
option1 = {
"xAxis": {
"type": 'category',
"data": ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'],
},
"yAxis": {
"type": 'value',
},
"series": [
{
"data": [150, 230, 224, 218, 135, 147, 260],
"type": 'line',
},
],
}
conversation = [
[
None, {
"text": f"""
Chart:
<chart options='{json.dumps(option1)}'></chart>
"""
}
],
]
with gr.Blocks() as demo:
mgr.Chatbot(
value=conversation,
flushing=False,
height=600,
)
if __name__ == "__main__":
demo.queue().launch()
|