vlms updated

This commit is contained in:
gdw6463
2024-05-08 12:50:46 +08:00
parent f3cd6cb09a
commit 2fbceddae5
3 changed files with 77 additions and 2 deletions

View File

@ -37,6 +37,10 @@ class Blackbox(ABC):
async def fast_api_handler(self, request: Request) -> Response:
pass
@abstractmethod
async def vlms_api_handler(self, request: Request) -> Response:
pass
@abstractmethod
def __call__(self, *args, **kwargs):
pass