Update main.py
Browse files
main.py
CHANGED
@@ -224,4 +224,13 @@ async def get_user(user_id=None):
|
|
224 |
"creation_date": response
|
225 |
}
|
226 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
227 |
run_fast(build=fast_app, port=7860)
|
|
|
224 |
"creation_date": response
|
225 |
}
|
226 |
|
227 |
+
app.openapi = js.custom_openapi(
|
228 |
+
app=fast_app
|
229 |
+
title="AkenoX Beta AI API",
|
230 |
+
version="1.0.0",
|
231 |
+
summary="Use It Only For Personal Project",
|
232 |
+
description="Free API By akenoai-lib",
|
233 |
+
routes=fast_app.routes,
|
234 |
+
)
|
235 |
+
|
236 |
run_fast(build=fast_app, port=7860)
|