Files
kuberay-images/ray-serve/ray_serve/__init__.py
Billy D. 12987c6adc
Some checks failed
Build and Publish ray-serve-apps / lint (push) Successful in 1m30s
Build and Publish ray-serve-apps / publish (push) Failing after 2m44s
fix: apply ruff fixes to ray_serve package
[ray-serve only]

- Fix whitespace in docstrings
- Add strict=True to zip() calls
- Use ternary operators where appropriate
- Rename unused loop variables
2026-02-02 11:09:35 -05:00

16 lines
469 B
Python

# Ray Serve deployments for GPU-shared AI inference
# Published to Gitea PyPI as ray-serve-apps
from ray_serve.serve_embeddings import app as embeddings_app
from ray_serve.serve_llm import app as llm_app
from ray_serve.serve_reranker import app as reranker_app
from ray_serve.serve_tts import app as tts_app
from ray_serve.serve_whisper import app as whisper_app
__all__ = [
"embeddings_app",
"llm_app",
"reranker_app",
"tts_app",
"whisper_app",
]