tabito12345678910 commited on
Commit
9af43c4
·
1 Parent(s): 6fb008f

Fix import path: use correct inference module names

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -15,7 +15,7 @@ from typing import List, Optional, Dict, Any
15
 
16
  # Import the existing inference engine
17
  try:
18
- from gohan_cid import GohanCIDInferenceEngine
19
  except ImportError:
20
  GohanCIDInferenceEngine = None
21
 
 
15
 
16
  # Import the existing inference engine
17
  try:
18
+ from inference_gohan_cid import GohanCIDInferenceEngine
19
  except ImportError:
20
  GohanCIDInferenceEngine = None
21