Spaces:
Sleeping
Sleeping
Update modules/orchestrator.py
Browse files- modules/orchestrator.py +6 -2
modules/orchestrator.py
CHANGED
@@ -14,13 +14,17 @@ from PIL import Image
|
|
14 |
|
15 |
# Import all our specialized tools
|
16 |
from . import gemini_handler, prompts, utils
|
17 |
-
|
|
|
|
|
|
|
|
|
18 |
pubmed_client,
|
19 |
clinicaltrials_client,
|
20 |
openfda_client,
|
21 |
rxnorm_client
|
22 |
-
# The umls_client is implicitly used via term extraction, but can be added for deeper analysis
|
23 |
)
|
|
|
24 |
|
25 |
|
26 |
# --- Internal Helper for Data Formatting ---
|
|
|
14 |
|
15 |
# Import all our specialized tools
|
16 |
from . import gemini_handler, prompts, utils
|
17 |
+
|
18 |
+
# ==============================================================================
|
19 |
+
# CORRECTED LINES: The import path is now an absolute import from the project root.
|
20 |
+
# The leading dot '.' has been removed.
|
21 |
+
from api_clients import (
|
22 |
pubmed_client,
|
23 |
clinicaltrials_client,
|
24 |
openfda_client,
|
25 |
rxnorm_client
|
|
|
26 |
)
|
27 |
+
# ==============================================================================
|
28 |
|
29 |
|
30 |
# --- Internal Helper for Data Formatting ---
|