fffiloni commited on
Commit
57eca73
·
verified ·
1 Parent(s): c964b52

persist_key False

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -148,7 +148,7 @@ C = FnNode(
148
  outputs={"c_text": gr.Textbox(label="C text")},
149
  )
150
 
151
- graph = Graph(name="micro-restore-debug-nojson", nodes=[D, E, A, B, C])
152
 
153
  port = int(os.getenv("PORT", "7860"))
154
  graph.launch(host="0.0.0.0", port=port, open_browser=False, log_level="debug", access_log=True)
 
148
  outputs={"c_text": gr.Textbox(label="C text")},
149
  )
150
 
151
+ graph = Graph(name="micro-restore-debug-nojson", nodes=[D, E, A, B, C], persist_key=False)
152
 
153
  port = int(os.getenv("PORT", "7860"))
154
  graph.launch(host="0.0.0.0", port=port, open_browser=False, log_level="debug", access_log=True)