Update app.py
Browse files
app.py
CHANGED
@@ -1998,9 +1998,8 @@ class WorkflowVisualizer:
|
|
1998 |
'text': 'Agent Collaboration Network',
|
1999 |
'x': 0.5,
|
2000 |
'xanchor': 'center',
|
2001 |
-
'font': {'size':
|
2002 |
},
|
2003 |
-
titlefont_size=16,
|
2004 |
showlegend=False,
|
2005 |
hovermode='closest',
|
2006 |
margin=dict(b=40, l=40, r=40, t=60),
|
@@ -2013,7 +2012,7 @@ class WorkflowVisualizer:
|
|
2013 |
)
|
2014 |
|
2015 |
return fig
|
2016 |
-
|
2017 |
def _create_empty_graph(self) -> go.Figure:
|
2018 |
"""Create empty graph with message."""
|
2019 |
fig = go.Figure()
|
|
|
1998 |
'text': 'Agent Collaboration Network',
|
1999 |
'x': 0.5,
|
2000 |
'xanchor': 'center',
|
2001 |
+
'font': {'size': 16, 'color': '#2c3e50'}
|
2002 |
},
|
|
|
2003 |
showlegend=False,
|
2004 |
hovermode='closest',
|
2005 |
margin=dict(b=40, l=40, r=40, t=60),
|
|
|
2012 |
)
|
2013 |
|
2014 |
return fig
|
2015 |
+
|
2016 |
def _create_empty_graph(self) -> go.Figure:
|
2017 |
"""Create empty graph with message."""
|
2018 |
fig = go.Figure()
|