mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
15 lines
279 B
Python
15 lines
279 B
Python
# coding=utf-8
|
|
from abc import abstractmethod
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class BaseTextToImage(BaseModel):
|
|
@abstractmethod
|
|
def check_auth(self):
|
|
pass
|
|
|
|
@abstractmethod
|
|
def generate_image(self, prompt: str, negative_prompt: str = None):
|
|
pass
|