mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-06-27 16:10:30 +08:00
11 lines
159 B
Python
11 lines
159 B
Python
import json
|
|
from main import app
|
|
|
|
|
|
def get_openapi_schema():
|
|
return json.dumps(app.openapi())
|
|
|
|
|
|
if __name__ == "__main__":
|
|
print(get_openapi_schema())
|