__init__.py 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # Copyright (C) 2025 AIDC-AI
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. # http://www.apache.org/licenses/LICENSE-2.0
  7. # Unless required by applicable law or agreed to in writing, software
  8. # distributed under the License is distributed on an "AS IS" BASIS,
  9. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. # See the License for the specific language governing permissions and
  11. # limitations under the License.
  12. """
  13. API Routers
  14. """
  15. from api.routers.health import router as health_router
  16. from api.routers.llm import router as llm_router
  17. from api.routers.tts import router as tts_router
  18. from api.routers.image import router as image_router
  19. from api.routers.content import router as content_router
  20. from api.routers.video import router as video_router
  21. from api.routers.tasks import router as tasks_router
  22. from api.routers.files import router as files_router
  23. from api.routers.resources import router as resources_router
  24. from api.routers.frame import router as frame_router
  25. __all__ = [
  26. "health_router",
  27. "llm_router",
  28. "tts_router",
  29. "image_router",
  30. "content_router",
  31. "video_router",
  32. "tasks_router",
  33. "files_router",
  34. "resources_router",
  35. "frame_router",
  36. ]