gitextract_1qxrycog/ ├── .editorconfig ├── .github/ │ └── workflows/ │ └── main.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── CHANGES.rst ├── LICENSE ├── Makefile ├── README.rst ├── pyproject.toml ├── pytest.ini ├── requirements/ │ ├── base.in │ ├── base.txt │ ├── ci.in │ ├── ci.txt │ ├── local.in │ └── local.txt ├── setup.cfg ├── src/ │ └── openai_cli/ │ ├── __init__.py │ ├── cli.py │ ├── client.py │ ├── config.py │ ├── test_cli.py │ ├── test_client.py │ └── test_config.py └── tox.ini