mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-10-04 20:14:13 +00:00
9 lines
128 B
Python
9 lines
128 B
Python
from typing import Protocol
|
|
|
|
from pyopenapi import webmethod
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class Models(Protocol):
|
|
...
|