├── .gitignore ├── LICENSE ├── README.md ├── opyngpt ├── __init__.py └── chat.py ├── setup.py └── standalone.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxkhn/OpynGPT/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxkhn/OpynGPT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxkhn/OpynGPT/HEAD/README.md -------------------------------------------------------------------------------- /opyngpt/__init__.py: -------------------------------------------------------------------------------- 1 | from .chat import prompt 2 | -------------------------------------------------------------------------------- /opyngpt/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxkhn/OpynGPT/HEAD/opyngpt/chat.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxkhn/OpynGPT/HEAD/setup.py -------------------------------------------------------------------------------- /standalone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxkhn/OpynGPT/HEAD/standalone.py --------------------------------------------------------------------------------