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