github-actions[bot]
Sync from https://github.com/ryanlinjui/menu-text-detection
8af6af2
raw
history blame contribute delete
212 Bytes
from abc import ABC, abstractmethod
import numpy as np
class LLMBase(ABC):
@classmethod
@abstractmethod
def call(image: np.ndarray, model: str, token: str) -> dict:
raise NotImplementedError