mirror of
https://github.com/meta-llama/llama-stack.git
synced 2026-01-02 22:22:16 +00:00
add async to get_model signature in Protocol
Signed-off-by: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
This commit is contained in:
parent
6aedfc2201
commit
fcf3b0a835
3 changed files with 7 additions and 7 deletions
|
|
@ -394,7 +394,7 @@ class EmbeddingsResponse(BaseModel):
|
|||
|
||||
|
||||
class ModelStore(Protocol):
|
||||
def get_model(self, identifier: str) -> Model: ...
|
||||
async def get_model(self, identifier: str) -> Model: ...
|
||||
|
||||
|
||||
class TextTruncation(Enum):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue