mirror of
https://github.com/Paillat-dev/viralfactory.git
synced 2026-01-02 09:16:19 +00:00
🚀
This commit is contained in:
18
src/engines/ScriptEngine/ShowerThoughtsScriptEngine.py
Normal file
18
src/engines/ScriptEngine/ShowerThoughtsScriptEngine.py
Normal file
@@ -0,0 +1,18 @@
|
||||
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 []
|
||||
Reference in New Issue
Block a user