Files
kuberay-images/ray-serve/ray_serve/__init__.py
Billy D. 16f6199534
Some checks failed
Build and Push Images / build-nvidia (push) Has been skipped
Build and Push Images / build-intel (push) Has been skipped
Build and Push Images / build-rdna2 (push) Has been skipped
Build and Push Images / build-strixhalo (push) Has been skipped
Build and Push Images / Release (push) Has been skipped
Build and Push Images / Notify (push) Successful in 1s
Build and Publish ray-serve-apps / lint (push) Failing after 3m38s
Build and Publish ray-serve-apps / publish (push) Has been skipped
ci: add [skip images] support and trigger ray-serve publish
[ray-serve only]

- Add skip conditions to all image build jobs
- Commit message [skip images] or [ray-serve only] skips image builds
- Touch ray_serve/__init__.py to trigger publish workflow
2026-02-02 11:02:12 -05:00

15 lines
468 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",
]