wassemgtk's picture
Add gateway API source for one-click deployment
092fd7d verified
Raw
History Blame Contribute Delete
231 Bytes
from __future__ import annotations
from abc import ABC, abstractmethod
class VisionProvider(ABC):
@abstractmethod
async def ground_object(self, image_bytes: bytes, phrase: str) -> dict:
raise NotImplementedError