├── .gitignore ├── LICENSE ├── README.md ├── examples └── lambo.py ├── poetry.lock ├── pyproject.toml └── schemagpt ├── __init__.py ├── exceptions.py ├── main.py ├── prompts.py └── types.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/br41nlet/SchemaGPT/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/br41nlet/SchemaGPT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/br41nlet/SchemaGPT/HEAD/README.md -------------------------------------------------------------------------------- /examples/lambo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/br41nlet/SchemaGPT/HEAD/examples/lambo.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/br41nlet/SchemaGPT/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/br41nlet/SchemaGPT/HEAD/pyproject.toml -------------------------------------------------------------------------------- /schemagpt/__init__.py: -------------------------------------------------------------------------------- 1 | from .main import SchemaGPT # NOQA: F401 2 | -------------------------------------------------------------------------------- /schemagpt/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/br41nlet/SchemaGPT/HEAD/schemagpt/exceptions.py -------------------------------------------------------------------------------- /schemagpt/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/br41nlet/SchemaGPT/HEAD/schemagpt/main.py -------------------------------------------------------------------------------- /schemagpt/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/br41nlet/SchemaGPT/HEAD/schemagpt/prompts.py -------------------------------------------------------------------------------- /schemagpt/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/br41nlet/SchemaGPT/HEAD/schemagpt/types.py --------------------------------------------------------------------------------