This commit is contained in:
2024-02-14 17:49:51 +01:00
parent 79d81b96b1
commit 0594458865
22 changed files with 223 additions and 124 deletions

View File

@@ -1,10 +1,16 @@
from abc import ABC, abstractmethod
import gradio as gr
class BaseEngine(ABC):
options: list
num_options: int
name: str
description: str
def __init__(self):
pass
pass
@classmethod
@abstractmethod
def get_options():
...