mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-31 11:43:55 +00:00
kill experimental attr on webmethod
This commit is contained in:
parent
1d855461d5
commit
a3cee70014
3 changed files with 2 additions and 8 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue