├── LICENSE ├── README.md ├── doc ├── __init__.py └── date.txt ├── img ├── WechatIMG81.jpeg ├── WechatIMG87.jpeg ├── WechatIMG88.jpeg └── qrcode.png ├── main.py └── test.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiseInRose/AgentGPT-zh/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiseInRose/AgentGPT-zh/HEAD/README.md -------------------------------------------------------------------------------- /doc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/date.txt: -------------------------------------------------------------------------------- 1 | 1764776686 2 | -------------------------------------------------------------------------------- /img/WechatIMG81.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiseInRose/AgentGPT-zh/HEAD/img/WechatIMG81.jpeg -------------------------------------------------------------------------------- /img/WechatIMG87.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiseInRose/AgentGPT-zh/HEAD/img/WechatIMG87.jpeg -------------------------------------------------------------------------------- /img/WechatIMG88.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiseInRose/AgentGPT-zh/HEAD/img/WechatIMG88.jpeg -------------------------------------------------------------------------------- /img/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiseInRose/AgentGPT-zh/HEAD/img/qrcode.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | if __name__ == "main": 4 | print("hello world") -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- 1 | import pytest 2 | 3 | if __name__ == "main": 4 | print("hello world") --------------------------------------------------------------------------------