From be2868dfcfeb0999a396897b02276475a47851a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=84=E4=BC=9F=E9=9F=AC?= Date: Fri, 13 Sep 2024 14:54:18 +0800 Subject: [PATCH] replace default web technologies to native HTML --- metagpt/actions/write_prd_an.py | 4 ++-- metagpt/strategy/experience_retriever.py | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/metagpt/actions/write_prd_an.py b/metagpt/actions/write_prd_an.py index 4c0403c36..574dcef89 100644 --- a/metagpt/actions/write_prd_an.py +++ b/metagpt/actions/write_prd_an.py @@ -19,8 +19,8 @@ LANGUAGE = ActionNode( PROGRAMMING_LANGUAGE = ActionNode( key="Programming Language", expected_type=str, - instruction="Mainstream programming language. If not specified in the requirements, native web technologies", - example="native web technologies", + instruction="Mainstream programming language. If not specified in the requirements, use native HTML", + example="native HTML", ) ORIGINAL_REQUIREMENTS = ActionNode( diff --git a/metagpt/strategy/experience_retriever.py b/metagpt/strategy/experience_retriever.py index 7229982d4..a4bb5a0cf 100644 --- a/metagpt/strategy/experience_retriever.py +++ b/metagpt/strategy/experience_retriever.py @@ -479,7 +479,7 @@ Explanation: The requirement is about software development. Assign each tasks to "args": { "task_id": "1", "dependent_task_ids": [], - "instruction": "Use native web technologies for the program. And create a product requirement document (PRD) outlining the features, user interface. ", + "instruction": "Use native HTML for the program. And create a product requirement document (PRD) outlining the features, user interface. ", "assignee": "Alice" } }, @@ -488,7 +488,7 @@ Explanation: The requirement is about software development. Assign each tasks to "args": { "task_id": "2", "dependent_task_ids": ["1"], - "instruction": "Use native web technologies for the program. Design the software architecture for the CLI snake game, including the data flow.", + "instruction": "Use native HTML for the program. Design the software architecture for the CLI snake game, including the data flow.", "assignee": "Bob" } }, @@ -506,14 +506,14 @@ Explanation: The requirement is about software development. Assign each tasks to "args": { "task_id": "4", "dependent_task_ids": ["3"], - "instruction": "Use native web technologies for the program. Implement the core game logic for the CLI snake game, including snake movement, food generation, and score tracking.", + "instruction": "Use native HTML for the program. Implement the core game logic for the CLI snake game, including snake movement, food generation, and score tracking.", "assignee": "Alex" } }, { "command_name": "TeamLeader.publish_message", "args": { - "content": "Use native web technologies for the program. Create a cli snake game.", + "content": "Use native HTML for the program. Create a cli snake game.", "send_to": "Alice" } },