Text-to-Chart / app.py
Omnibus's picture
Create app.py
585747f verified
raw
history blame
889 Bytes
import gradio as gr
import execjs
# Define the Mermaid code for the flowchart
mermaid_code = """
graph TD;
A[Start] --> B[Decision]
B -- Yes --> C[Option 1]
B -- No --> D[Option 2]
C --> E[End]
D --> E
E[End] --> F[End]
"""
# Create an ExecJS context
context = execjs.compile("""
var mermaid = require('mermaid');
mermaid.initialize({startOnLoad:true});
function renderMermaid(mermaidCode) {
mermaid.mermaidAPI.render('mermaid', mermaidCode, function(svgCode, bindFunctions) {
document.getElementById('diagram').innerHTML = svgCode;
});
}
""")
def call_chart():
# Render the flowchart
context.call("renderMermaid", mermaid_code)
# Print the Mermaid code for reference
print(mermaid_code)
with gr.Blocks() as app:
gr.HTML("""<div id='diagram'></div>""")
app.load(call_chart,None,None)
app.launch()