Ali2206 commited on
Commit
3f76413
·
verified ·
1 Parent(s): 4b98818

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -8,6 +8,10 @@ from multiprocessing import freeze_support
8
  sys.path.insert(0, os.path.join(os.path.dirname(os.path.abspath(__file__)), "src"))
9
 
10
  from txagent.txagent import TxAgent
 
 
 
 
11
 
12
 
13
  # === Environment setup ===
 
8
  sys.path.insert(0, os.path.join(os.path.dirname(os.path.abspath(__file__)), "src"))
9
 
10
  from txagent.txagent import TxAgent
11
+ import inspect
12
+
13
+ print(">>> TxAgent loaded from:", inspect.getfile(TxAgent))
14
+ print(">>> TxAgent has run_gradio_chat:", hasattr(TxAgent, "run_gradio_chat"))
15
 
16
 
17
  # === Environment setup ===