Spaces:
Running
Running
File size: 793 Bytes
89e8242 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | print("1. Importing os, sys", flush=True)
import os
import sys
print("2. Importing FastAPI", flush=True)
from fastapi import FastAPI
print("3. Importing Text Router...", flush=True)
from app.routers.text_router import router as text_router
print(" Text Router OK", flush=True)
print("4. Importing Image Router...", flush=True)
from app.routers.image_router import router as image_router
print(" Image Router OK", flush=True)
print("5. Importing Video Router...", flush=True)
from app.routers.video_router import router as video_router
print(" Video Router OK", flush=True)
print("6. Importing Audio Router...", flush=True)
from app.routers.audio_router import router as audio_router
print(" Audio Router OK", flush=True)
print("Startup Import Test Finished Successfully.", flush=True)
|