siddhartharyaai commited on
Commit
efe25f9
·
verified ·
1 Parent(s): f0aa456

Update utils.py

Browse files
Files changed (1) hide show
  1. utils.py +3 -2
utils.py CHANGED
@@ -21,10 +21,11 @@ repo_path = os.path.join('/home', 'user', 'open_deep_research')
21
  if repo_path not in sys.path:
22
  sys.path.insert(0, repo_path)
23
 
24
- # --- CORRECT IMPORT (for the nickscamara/open-deep-research repo) ---
25
- from agent import OpenDeepResearchAgent # CORRECT import
26
  from report_structure import generate_report
27
 
 
28
  class DialogueItem(BaseModel):
29
  speaker: Literal["Jane", "John"]
30
  display_speaker: str = "Jane"
 
21
  if repo_path not in sys.path:
22
  sys.path.insert(0, repo_path)
23
 
24
+ # --- CORRECT IMPORT (for local cloned repo) ---
25
+ from open_deep_research.agent import OpenDeepResearchAgent
26
  from report_structure import generate_report
27
 
28
+
29
  class DialogueItem(BaseModel):
30
  speaker: Literal["Jane", "John"]
31
  display_speaker: str = "Jane"