Files
viralfactory/src/engines/ScriptEngine/ShowerThoughtsScriptEngine.py
2024-02-14 17:49:51 +01:00

19 lines
476 B
Python

from .BaseScriptEngine import BaseScriptEngine
import gradio as gr
class ShowerThoughtsScriptEngine(BaseScriptEngine):
name = "Shower Thoughts"
description = "Generate a Shower Thoughts script"
num_options = 0
def __init__(self, options: list[list | tuple | str | int | float | bool | None]):
super().__init__()
def generate(self, text: str, path: str) -> str:
pass
@classmethod
def get_options(cls) -> list:
return []