├── .gitchangelog.rc ├── .github └── workflows │ └── pre-commit.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── ez_openai ├── __init__.py └── decorator.py ├── pyproject.toml └── tests ├── __init__.py ├── dog.jpg └── test_stuff.py /.gitchangelog.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skorokithakis/ez-openai/HEAD/.gitchangelog.rc -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skorokithakis/ez-openai/HEAD/.github/workflows/pre-commit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skorokithakis/ez-openai/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skorokithakis/ez-openai/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skorokithakis/ez-openai/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skorokithakis/ez-openai/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skorokithakis/ez-openai/HEAD/README.md -------------------------------------------------------------------------------- /ez_openai/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skorokithakis/ez-openai/HEAD/ez_openai/__init__.py -------------------------------------------------------------------------------- /ez_openai/decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skorokithakis/ez-openai/HEAD/ez_openai/decorator.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skorokithakis/ez-openai/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skorokithakis/ez-openai/HEAD/tests/dog.jpg -------------------------------------------------------------------------------- /tests/test_stuff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skorokithakis/ez-openai/HEAD/tests/test_stuff.py --------------------------------------------------------------------------------