Update src/utils/run_pipeline_and_save.py
Browse files
src/utils/run_pipeline_and_save.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
import os
|
| 2 |
import json
|
| 3 |
from agents import (
|
| 4 |
-
product_manager_agent,
|
| 5 |
project_manager_agent,
|
| 6 |
software_architect_agent,
|
| 7 |
software_engineer_agent,
|
|
@@ -24,8 +24,8 @@ def run_pipeline_and_save(prompt: str):
|
|
| 24 |
conversation_log = []
|
| 25 |
|
| 26 |
# Step 1: Product Manager interprets prompt
|
| 27 |
-
pm_response = product_manager_agent.run(prompt)
|
| 28 |
-
conversation_log.append({"Product Manager": pm_response})
|
| 29 |
|
| 30 |
# Step 2: Project Manager creates a structured plan
|
| 31 |
proj_mgmt_response = project_manager_agent.run(pm_response)
|
|
|
|
| 1 |
import os
|
| 2 |
import json
|
| 3 |
from agents import (
|
| 4 |
+
#product_manager_agent,
|
| 5 |
project_manager_agent,
|
| 6 |
software_architect_agent,
|
| 7 |
software_engineer_agent,
|
|
|
|
| 24 |
conversation_log = []
|
| 25 |
|
| 26 |
# Step 1: Product Manager interprets prompt
|
| 27 |
+
#pm_response = product_manager_agent.run(prompt)
|
| 28 |
+
#conversation_log.append({"Product Manager": pm_response})
|
| 29 |
|
| 30 |
# Step 2: Project Manager creates a structured plan
|
| 31 |
proj_mgmt_response = project_manager_agent.run(pm_response)
|