File size: 15,883 Bytes
0490fa6 5ce3b16 0490fa6 5ce3b16 0490fa6 5ce3b16 0490fa6 5ce3b16 0490fa6 65f7c11 0490fa6 65f7c11 0490fa6 65f7c11 0490fa6 65f7c11 0490fa6 5ce3b16 0490fa6 5ce3b16 0490fa6 5ce3b16 0490fa6 65f7c11 0490fa6 65f7c11 0490fa6 65f7c11 0490fa6 65f7c11 0490fa6 65f7c11 0490fa6 5ce3b16 0490fa6 65f7c11 0490fa6 65f7c11 0490fa6 5ce3b16 0490fa6 5ce3b16 0490fa6 5ce3b16 0490fa6 65f7c11 0490fa6 65f7c11 0490fa6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 |
import asyncio
import datetime
import json
import os
from functools import partial
from pathlib import Path
from typing import Any, Coroutine, Optional
import aiofiles
from aiobotocore.session import get_session
from mdutils.mdutils import MdUtils
from metagpt.actions import Action
from metagpt.actions.action_output import ActionOutput
from metagpt.actions.design_api import WriteDesign
from metagpt.actions.prepare_documents import PrepareDocuments
from metagpt.actions.project_management import WriteTasks
from metagpt.actions.summarize_code import SummarizeCode
from metagpt.actions.write_code import WriteCode
from metagpt.actions.write_prd import WritePRD
from metagpt.config import CONFIG
from metagpt.const import (
COMPETITIVE_ANALYSIS_FILE_REPO,
DATA_API_DESIGN_FILE_REPO,
SEQ_FLOW_FILE_REPO,
SERDESER_PATH,
)
from metagpt.roles import Architect, Engineer, ProductManager, ProjectManager, Role
from metagpt.schema import Message
from metagpt.team import Team
from metagpt.utils.common import any_to_str, read_json_file, write_json_file
from metagpt.utils.git_repository import GitRepository
from pydantic import BaseModel, Field
from zipstream import AioZipStream
_default_llm_stream_log = partial(print, end="")
class PackInfo(BaseModel):
url: str
class RoleRun(Action):
role: Role
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
action = self.role.rc.todo
self.desc = f"{self.role.profile} {action.desc or str(action)}"
class PackProject(Action):
role: Role
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.desc = "Pack the project with prd, design, code and more."
async def run(self, key: str):
url = await self.upload(key)
info = PackInfo(url=url)
mdfile = MdUtils(None)
mdfile.new_line(mdfile.new_inline_link(url, url.rsplit("/", 1)[-1]))
return ActionOutput(mdfile.get_md_text(), info)
async def upload(self, key: str):
files = []
workspace = CONFIG.git_repo.workdir
workspace = str(workspace)
for r, _, fs in os.walk(workspace):
_r = r[len(workspace) :].lstrip("/")
for f in fs:
files.append({"file": os.path.join(r, f), "name": os.path.join(_r, f)})
# aiozipstream
chunks = []
async for chunk in AioZipStream(files, chunksize=32768).stream():
chunks.append(chunk)
return await get_download_url(b"".join(chunks), key)
class SoftwareCompany(Role):
"""封装软件公司成角色,以快速接入agent store。"""
finish: bool = False
company: Team = Field(default_factory=Team)
active_role: Optional[Role] = None
git_repo: Optional[GitRepository] = None
max_auto_summarize_code: int = 0
def __init__(self, use_code_review=False, *args, **kwargs):
super().__init__(*args, **kwargs)
engineer = Engineer(n_borg=5, use_code_review=use_code_review)
self.company.hire([ProductManager(), Architect(), ProjectManager(), engineer])
self._init_actions([PackProject(role=engineer)])
def recv(self, message: Message) -> None:
self.company.run_project(message.content)
async def _think(self) -> Coroutine[Any, Any, bool]:
"""软件公司运行需要4轮
BOSS -> ProductManager -> Architect -> ProjectManager -> Engineer
BossRequirement -> WritePRD -> WriteDesign -> WriteTasks -> WriteCode ->
"""
if self.finish:
self.rc.todo = None
return False
if self.git_repo is not None:
CONFIG.git_repo = self.git_repo
environment = self.company.env
for role in environment.roles.values():
if await role._observe():
await role._think()
if isinstance(role.rc.todo, PrepareDocuments):
self.active_role = role
await self.act()
self.git_repo = CONFIG.git_repo
return await self._think()
if isinstance(role.rc.todo, SummarizeCode):
return await self._think()
self.rc.todo = RoleRun(role=role)
self.active_role = role
return True
self._set_state(0)
return True
async def _act(self) -> Message:
if self.git_repo is not None:
CONFIG.git_repo = self.git_repo
CONFIG.src_workspace = CONFIG.git_repo.workdir / CONFIG.git_repo.workdir.name
CONFIG.max_auto_summarize_code = self.max_auto_summarize_code
if isinstance(self.rc.todo, PackProject):
workdir = CONFIG.git_repo.workdir
name = workdir.name
uid = workdir.parent.name
now = datetime.datetime.now().strftime("%Y%m%d%H%M%S")
key = f"{uid}/metagpt-{name}-{now}.zip"
output = await self.rc.todo.run(key)
self.finish = True
return Message(output.content, role=self.profile, cause_by=type(self.rc.todo))
default_log_stream = CONFIG.get("LLM_STREAM_LOG", _default_llm_stream_log)
start = False
insert_code = False
def log_stream(msg):
nonlocal start, insert_code
if not start:
if msg.startswith("["):
msg = "```json\n" + msg
insert_code = True
start = True
return default_log_stream(msg)
CONFIG.LLM_STREAM_LOG = log_stream
output = await self.active_role._act()
self.active_role._set_state(state=-1)
self.active_role.publish_message(output)
if insert_code:
default_log_stream("\n```\n")
cause_by = output.cause_by
if cause_by == any_to_str(WritePRD):
output = await self.format_prd(output)
elif cause_by == any_to_str(WriteDesign):
output = await self.format_system_design(output)
elif cause_by == any_to_str(WriteTasks):
output = await self.format_tasks(output)
elif cause_by == any_to_str(WriteCode):
output = await self.format_code(output)
elif cause_by == any_to_str(SummarizeCode):
output = await self.format_code_summary(output)
return output
async def format_prd(self, msg: Message):
docs = [(k, v) for k, v in msg.instruct_content.docs.items()]
prd_doc = docs[0][1]
data = json.loads(prd_doc.content)
mdfile = MdUtils(None)
title = "Original Requirements"
mdfile.new_header(2, title, add_table_of_contents=False)
mdfile.new_paragraph(data[title])
title = "Product Goals"
mdfile.new_header(2, title, add_table_of_contents=False)
mdfile.new_list(data[title], marked_with="1")
title = "User Stories"
mdfile.new_header(2, title, add_table_of_contents=False)
mdfile.new_list(data[title], marked_with="1")
title = "Competitive Analysis"
mdfile.new_header(2, title, add_table_of_contents=False)
if all(i.count(":") == 1 for i in data[title]):
mdfile.new_table(
2, len(data[title]) + 1, ["Competitor", "Description", *(i for j in data[title] for i in j.split(":"))]
)
else:
mdfile.new_list(data[title], marked_with="1")
title = "Competitive Quadrant Chart"
mdfile.new_header(2, title, add_table_of_contents=False)
competitive_analysis_path = (
CONFIG.git_repo.workdir / Path(COMPETITIVE_ANALYSIS_FILE_REPO) / Path(prd_doc.filename).with_suffix(".png")
)
if competitive_analysis_path.exists():
key = str(competitive_analysis_path.relative_to(CONFIG.git_repo.workdir.parent.parent))
url = await upload_file_to_s3(competitive_analysis_path, key)
mdfile.new_line(mdfile.new_inline_image(title, url))
else:
mdfile.insert_code(data[title], "mermaid")
title = "Requirement Analysis"
mdfile.new_header(2, title, add_table_of_contents=False)
mdfile.new_paragraph(data[title])
title = "Requirement Pool"
mdfile.new_header(2, title, add_table_of_contents=False)
mdfile.new_table(
2, len(data[title]) + 1, ["Task Description", "Priority", *(i for j in data[title] for i in j)]
)
title = "UI Design draft"
mdfile.new_header(2, title, add_table_of_contents=False)
mdfile.new_paragraph(data[title])
title = "Anything UNCLEAR"
mdfile.new_header(2, title, add_table_of_contents=False)
mdfile.new_paragraph(data[title])
content = mdfile.get_md_text()
return Message(content, cause_by=msg.cause_by, role=msg.role)
async def format_system_design(self, msg: Message):
system_designs = [(k, v) for k, v in msg.instruct_content.docs.items()]
system_design_doc = system_designs[0][1]
data = json.loads(system_design_doc.content)
mdfile = MdUtils(None)
title = "Implementation approach"
mdfile.new_header(2, title, add_table_of_contents=False)
mdfile.new_paragraph(data[title])
title = "File list"
mdfile.new_header(2, title, add_table_of_contents=False)
mdfile.new_list(data[title], marked_with="1")
title = "Data structures and interfaces"
mdfile.new_header(2, title, add_table_of_contents=False)
data_api_design_path = (
CONFIG.git_repo.workdir
/ Path(DATA_API_DESIGN_FILE_REPO)
/ Path(system_design_doc.filename).with_suffix(".png")
)
if data_api_design_path.exists():
key = str(data_api_design_path.relative_to(CONFIG.git_repo.workdir.parent.parent))
url = await upload_file_to_s3(data_api_design_path, key)
mdfile.new_line(mdfile.new_inline_image(title, url))
else:
mdfile.insert_code(data[title], "mermaid")
title = "Program call flow"
mdfile.new_header(2, title, add_table_of_contents=False)
seq_flow_path = (
CONFIG.git_repo.workdir / SEQ_FLOW_FILE_REPO / Path(system_design_doc.filename).with_suffix(".png")
)
if seq_flow_path.exists():
key = str(seq_flow_path.relative_to(CONFIG.git_repo.workdir.parent.parent))
url = await upload_file_to_s3(seq_flow_path, key)
mdfile.new_line(mdfile.new_inline_image(title, url))
else:
mdfile.insert_code(data[title], "mermaid")
title = "Anything UNCLEAR"
mdfile.new_header(2, title, add_table_of_contents=False)
mdfile.new_paragraph(data[title])
content = mdfile.get_md_text()
return Message(content, cause_by=msg.cause_by, role=msg.role)
async def format_tasks(self, msg: Message):
tasks = [(k, v) for k, v in msg.instruct_content.docs.items()]
task_doc = tasks[0][1]
data = json.loads(task_doc.content)
mdfile = MdUtils(None)
title = "Required Python packages"
mdfile.new_header(2, title, add_table_of_contents=False)
mdfile.insert_code("\n".join(data[title]), "txt")
title = "Required Other language third-party packages"
mdfile.new_header(2, title, add_table_of_contents=False)
mdfile.insert_code("\n".join(data[title]), "txt")
title = "Logic Analysis"
mdfile.new_header(2, title, add_table_of_contents=False)
mdfile.new_table(
2, len(data[title]) + 1, ["Filename", "Class/Function Name", *(i for j in data[title] for i in j)]
)
title = "Task list"
mdfile.new_header(2, title, add_table_of_contents=False)
mdfile.new_list(data[title])
title = "Full API spec"
mdfile.new_header(2, title, add_table_of_contents=False)
if data[title]:
mdfile.insert_code(data[title], "json")
title = "Shared Knowledge"
mdfile.new_header(2, title, add_table_of_contents=False)
mdfile.insert_code(data[title], "python")
title = "Anything UNCLEAR"
mdfile.new_header(2, title, add_table_of_contents=False)
mdfile.insert_code(data[title], "python")
content = mdfile.get_md_text()
return Message(content, cause_by=msg.cause_by, role=msg.role)
async def format_code(self, msg: Message):
data = msg.content.splitlines()
workdir = CONFIG.git_repo.workdir
code_root = workdir / workdir.name
mdfile = MdUtils(None)
for filename in data:
mdfile.new_header(2, filename, add_table_of_contents=False)
async with aiofiles.open(code_root / filename) as f:
content = await f.read()
suffix = filename.rsplit(".", maxsplit=1)[-1]
mdfile.insert_code(content, "python" if suffix == "py" else suffix)
return Message(mdfile.get_md_text(), cause_by=msg.cause_by, role=msg.role)
async def format_code_summary(self, msg: Message):
# TODO
return msg
async def think(self):
await self._think()
return self.rc.todo
async def act(self):
return await self._act()
def serialize(self, stg_path: Path = None):
stg_path = SERDESER_PATH.joinpath("software_company") if stg_path is None else stg_path
team_info_path = stg_path.joinpath("software_company_info.json")
write_json_file(team_info_path, self.model_dump(exclude={"company": True}))
self.company.serialize(stg_path.joinpath("company")) # save company alone
@classmethod
def deserialize(cls, stg_path: Path) -> "Team":
"""stg_path = ./storage/team"""
# recover team_info
software_company_info_path = stg_path.joinpath("software_company_info.json")
if not software_company_info_path.exists():
raise FileNotFoundError(
"recover storage meta file `team_info.json` not exist, "
"not to recover and please start a new project."
)
software_company_info: dict = read_json_file(software_company_info_path)
# recover environment
company = Team.deserialize(stg_path=stg_path.joinpath("company"))
software_company_info.update({"company": company})
return cls(**software_company_info)
async def upload_file_to_s3(filepath: str, key: str):
async with aiofiles.open(filepath, "rb") as f:
content = await f.read()
return await get_download_url(content, key)
async def get_download_url(content: bytes, key: str) -> str:
if CONFIG.get("STORAGE_TYPE") == "S3":
session = get_session()
async with session.create_client(
"s3",
aws_secret_access_key=CONFIG.get("S3_SECRET_KEY"),
aws_access_key_id=CONFIG.get("S3_ACCESS_KEY"),
endpoint_url=CONFIG.get("S3_ENDPOINT_URL"),
use_ssl=CONFIG.get("S3_SECURE"),
) as client:
# upload object to amazon s3
bucket = CONFIG.get("S3_BUCKET")
await client.put_object(Bucket=bucket, Key=key, Body=content)
return f"{CONFIG.get('S3_ENDPOINT_URL')}/{bucket}/{key}"
else:
storage = CONFIG.get("LOCAL_ROOT", "storage")
base_url = CONFIG.get("LOCAL_BASE_URL", "storage")
filepath = Path(storage) / key
filepath.parent.mkdir(exist_ok=True, parents=True)
async with aiofiles.open(filepath, "wb") as f:
await f.write(content)
return f"{base_url}/{key}"
async def main(idea, **kwargs):
sc = SoftwareCompany(**kwargs)
sc.recv(Message(idea))
while await sc.think():
print(await sc.act())
if __name__ == "__main__":
asyncio.run(main())
|