MaxKB/apps/setting/models_provider/impl/base_image.py
2024-11-05 13:53:00 +08:00

15 lines
251 B
Python

# coding=utf-8
from abc import abstractmethod
from pydantic import BaseModel
class BaseImage(BaseModel):
@abstractmethod
def check_auth(self):
pass
@abstractmethod
def image_understand(self, image_file, text):
pass