kill experimental attr on webmethod

This commit is contained in:
Ashwin Bharambe 2025-04-11 17:13:46 -07:00
parent 1d855461d5
commit a3cee70014
3 changed files with 2 additions and 8 deletions

View file

@ -726,7 +726,7 @@ class Inference(Protocol):
"""
...
@webmethod(route="/inference/batch-completion", method="POST", experimental=True)
@webmethod(route="/inference/batch-completion", method="POST")
async def batch_completion(
self,
model_id: str,
@ -777,7 +777,7 @@ class Inference(Protocol):
"""
...
@webmethod(route="/inference/batch-chat-completion", method="POST", experimental=True)
@webmethod(route="/inference/batch-chat-completion", method="POST")
async def batch_chat_completion(
self,
model_id: str,