From d9a2626fde3c7e43e7e118e3ee740a0ad4b9fcf9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8E=98=E6=9D=83=20=E9=A9=AC?= Date: Tue, 21 Nov 2023 13:39:10 +0800 Subject: [PATCH] feat: +PrepareDocuments --- metagpt/actions/prepare_documents.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 metagpt/actions/prepare_documents.py diff --git a/metagpt/actions/prepare_documents.py b/metagpt/actions/prepare_documents.py new file mode 100644 index 000000000..7cf05c5d1 --- /dev/null +++ b/metagpt/actions/prepare_documents.py @@ -0,0 +1,15 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +""" +@Time : 2023/11/20 +@Author : mashenquan +@File : git_repository.py +@Desc: PrepareDocuments Action: initialize project folder and add new requirements to docs/requirements.txt. + RFC 135 2.2.3.5.1. +""" +from metagpt.actions import Action + + +class PrepareDocuments(Action): + def __init__(self, name="", context=None, llm=None): + pass