提醒用户告知平台或工具的偏好,以减少符合预期的情况

This commit is contained in:
ChenVadder 2023-07-29 18:48:47 +08:00
parent 6d8a1a19ac
commit 5bdf07c721
3 changed files with 20 additions and 0 deletions

View file

@ -138,7 +138,13 @@ # Use code review will cost more money, but will opt for better code quality.
```
After running the script, you can find your new project in the `workspace/` directory.
### Preference of Platform or Tool
As the project becomes more complete, the cost of generating the outputs will also gradually increase. Therefore, it is recommended to explicitly specify the platform or tools you want to use when describing the requirements.
```shell
python startup.py "Write a cli snake game that runs on Windows"
```
### Usage
```

View file

@ -75,7 +75,14 @@ # 开启code review模式会会花费更多的money, 但是会提升代码质量
```
运行脚本后,您可以在 `workspace/` 目录中找到您的新项目。
### 平台或工具的倾向性
随着项目越来越完善,每一次生成项目的成本也会逐步上升,所以建议在阐述需求时显式地告知想要使用的平台或工具。
例如:
```shell
python startup.py "写一个能够在Windows上运行的命令行贪吃蛇"
```
### 代码实现
```python

View file

@ -120,6 +120,13 @@ # コードレビューを利用すれば、コストはかかるが、より良
```
スクリプトを実行すると、`workspace/` ディレクトリに新しいプロジェクトが見つかります。
### プラットフォームまたはツールの設定
プロジェクトが完成するにつれて、生成される各プロジェクトのコストは徐々に増加するため、要件を説明する際に使用するプラットフォームやツールを明示的に伝えることをお勧めします。例:
```shell
python startup.py "Write a cli snake game that runs on Windows"
```
### 使用方法