nesterus
moved contents of presentations repo
d90acf0
raw
history blame
481 Bytes
from typing import List
prefix = "prompt: "
class PromptConfig:
def __init__(
self,
title_prompt: str,
text_prompt: str,
image_prompt: str,
background_prompt: str,
background_styles: List[str],
):
self.title_prompt = title_prompt
self.text_prompt = text_prompt
self.image_prompt = image_prompt
self.background_prompt = background_prompt
self.background_styles = background_styles