mirror of
https://github.com/FoundationAgents/MetaGPT.git
synced 2026-05-21 14:05:17 +02:00
feat: +PrepareDocuments
This commit is contained in:
parent
85e3620638
commit
d9a2626fde
1 changed files with 15 additions and 0 deletions
15
metagpt/actions/prepare_documents.py
Normal file
15
metagpt/actions/prepare_documents.py
Normal file
|
|
@ -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
|
||||
Loading…
Add table
Add a link
Reference in a new issue