mirror of
https://github.com/Paillat-dev/viralfactory.git
synced 2026-01-02 09:16:19 +00:00
19 lines
476 B
Python
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 []
|