Jayashree Sridhar commited on
Commit
4551066
·
1 Parent(s): d10818d

crew run code in app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -77,8 +77,8 @@ class PersonalCoachApp:
77
 
78
  # Execute crew
79
  print(f"Processing input in {self.session_data['language']}...")
80
- import crew_config
81
- print(dir(crew_config.PersonalCoachCrew))
82
  result = self.crew.process(inputs=crew_input)
83
 
84
  # Extract response
 
77
 
78
  # Execute crew
79
  print(f"Processing input in {self.session_data['language']}...")
80
+ print("PersonalCoachCrew methods:", dir(PersonalCoachCrew))
81
+ print("Has process?", hasattr(PersonalCoachCrew, "process"))
82
  result = self.crew.process(inputs=crew_input)
83
 
84
  # Extract response