InvokeAI/scripts/generate_openapi_schema.py
2024-03-07 10:16:44 +11:00

18 lines
340 B
Python

import json
import os
import sys
def main():
# Change working directory to the repo root
os.chdir(os.path.abspath(os.path.join(os.path.dirname(__file__), "..")))
from invokeai.app.api_app import custom_openapi
schema = custom_openapi()
json.dump(schema, sys.stdout, indent=2)
if __name__ == "__main__":
main()