mirror of
https://github.com/Paillat-dev/viralfactory.git
synced 2026-01-02 01:06:19 +00:00
17 lines
248 B
Python
17 lines
248 B
Python
from abc import ABC, abstractmethod
|
|
import gradio as gr
|
|
|
|
|
|
class BaseEngine(ABC):
|
|
num_options: int
|
|
name: str
|
|
description: str
|
|
|
|
def __init__(self):
|
|
pass
|
|
|
|
@classmethod
|
|
@abstractmethod
|
|
def get_options():
|
|
...
|