- 可以用来解释和审查代码的工具,支持大文件
- ChatGPT命令行工具,可以通过命令行来调用ChatGPT
- Windows
- Python 3.10
pip install -r requirements.txt
在用户目录下,创建.chatgpt_tool
文件夹,然后在里面创建config.json
文件,内容类似于:
{
"model": "text-davinci-002-render-sha",
"access_token": "your_access_token",
"export_dir": "your_export_dir",
"language": "chinese",
}
其中:
model
是模型,默认为text-davinci-002-render-sha
access_token
是你的令牌,可以在这里获得export_dir
是导出对话的目录language
是用来做代码审查和解释的语言
另外,可以支持环境变量,类似于:"export_dir": ${CHATGPT_EXPORT_DIR}
- 代码解释:
python code_explainer.py -h
- 代码审查:
python code_reviewer.py -h
- 命令行工具:
python cli.py -h
推荐使用Windows Terminal,可以输出更友好的界面和颜色
上面的指令在执行后会有特定的命令行提示,按照提示操作即可。