├── .env.template ├── .gitignore ├── README.md ├── gpt-4o-batch.py ├── gpt-4o-concurrent.py ├── gpt-4o-tuzi.py ├── input ├── images │ └── .gitkeep └── tasks.json.example ├── requirements.txt └── task_helper.py /.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjueszu/gpt-4o-py/HEAD/.env.template -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjueszu/gpt-4o-py/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjueszu/gpt-4o-py/HEAD/README.md -------------------------------------------------------------------------------- /gpt-4o-batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjueszu/gpt-4o-py/HEAD/gpt-4o-batch.py -------------------------------------------------------------------------------- /gpt-4o-concurrent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjueszu/gpt-4o-py/HEAD/gpt-4o-concurrent.py -------------------------------------------------------------------------------- /gpt-4o-tuzi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjueszu/gpt-4o-py/HEAD/gpt-4o-tuzi.py -------------------------------------------------------------------------------- /input/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /input/tasks.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjueszu/gpt-4o-py/HEAD/input/tasks.json.example -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjueszu/gpt-4o-py/HEAD/requirements.txt -------------------------------------------------------------------------------- /task_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjueszu/gpt-4o-py/HEAD/task_helper.py --------------------------------------------------------------------------------