shader_router
Browse files- App/app.py +4 -2
App/app.py
CHANGED
@@ -4,7 +4,9 @@ from fastapi.middleware.gzip import GZipMiddleware
|
|
4 |
|
5 |
from .TTS.TTSRoutes import tts_router
|
6 |
from .Embedding.EmbeddingRoutes import embeddigs_router
|
7 |
-
|
|
|
|
|
8 |
|
9 |
from fastapi.middleware.cors import CORSMiddleware
|
10 |
|
@@ -47,4 +49,4 @@ async def landing_page():
|
|
47 |
|
48 |
app.include_router(embeddigs_router)
|
49 |
app.include_router(tts_router)
|
50 |
-
|
|
|
4 |
|
5 |
from .TTS.TTSRoutes import tts_router
|
6 |
from .Embedding.EmbeddingRoutes import embeddigs_router
|
7 |
+
from .Shaders.ShaderRoutes import shader_router
|
8 |
+
|
9 |
+
# from .Chat.PoeChatrouter import chat_router
|
10 |
|
11 |
from fastapi.middleware.cors import CORSMiddleware
|
12 |
|
|
|
49 |
|
50 |
app.include_router(embeddigs_router)
|
51 |
app.include_router(tts_router)
|
52 |
+
app.include_router(shader_router)
|