Skip to content

Commit b449fd6

Browse files
authored
Merge pull request #547 from PlanExeOrg/fix/mcp-plan-raw
Fix MCP plan_create: write plan_raw.json instead of plan.txt
2 parents 6a4b9fc + 3dfec06 commit b449fd6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

worker_plan_database/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1399,7 +1399,7 @@ def process_pending_tasks() -> bool:
13991399

14001400
# write the task prompt to the run_id_dir
14011401
plan_file = PlanFile.create(vague_plan_description=prompt, start_time=start_time)
1402-
plan_file.save(str(run_id_dir / FilenameEnum.INITIAL_PLAN.value))
1402+
plan_file.save(str(run_id_dir / FilenameEnum.INITIAL_PLAN_RAW.value))
14031403

14041404
with app.app_context():
14051405
event_context = {

0 commit comments

Comments
 (0)