DeepVen commited on
Commit
ee65653
1 Parent(s): 1f96336

Upload Index.py

Browse files
Files changed (1) hide show
  1. Index.py +2 -2
Index.py CHANGED
@@ -135,8 +135,8 @@ initialize_vectorstore()
135
 
136
  @app.get("/trace")
137
  def trace():
138
-
139
- return px.active_session().get_spans_dataframe ()
140
 
141
 
142
 
 
135
 
136
  @app.get("/trace")
137
  def trace():
138
+ df = px.active_session().get_spans_dataframe().fillna('')
139
+ return df
140
 
141
 
142