Update agents/crew.py
Browse files- agents/crew.py +2 -2
agents/crew.py
CHANGED
|
@@ -254,7 +254,7 @@ class GAIACrew():
|
|
| 254 |
tracing=False # Arize Phoenix
|
| 255 |
)
|
| 256 |
|
| 257 |
-
def _get_final_question(file_path):
|
| 258 |
final_question = question
|
| 259 |
|
| 260 |
if file_path:
|
|
@@ -269,7 +269,7 @@ def _get_final_question(file_path):
|
|
| 269 |
def run_crew(question, file_path):
|
| 270 |
print("")
|
| 271 |
|
| 272 |
-
final_question = _get_final_question(file_path)
|
| 273 |
|
| 274 |
print(f"🤖 Initial question: {question}")
|
| 275 |
print(f"🤖 Final question: {final_question}")
|
|
|
|
| 254 |
tracing=False # Arize Phoenix
|
| 255 |
)
|
| 256 |
|
| 257 |
+
def _get_final_question(question, file_path):
|
| 258 |
final_question = question
|
| 259 |
|
| 260 |
if file_path:
|
|
|
|
| 269 |
def run_crew(question, file_path):
|
| 270 |
print("")
|
| 271 |
|
| 272 |
+
final_question = _get_final_question(question, file_path)
|
| 273 |
|
| 274 |
print(f"🤖 Initial question: {question}")
|
| 275 |
print(f"🤖 Final question: {final_question}")
|