screenshot-to-code/backend/prompts/types.py
2024-02-26 09:13:45 +00:00

25 lines
394 B
Python

from typing import Literal, TypedDict
class SystemPrompts(TypedDict):
html_tailwind: str
react_tailwind: str
bootstrap: str
ionic_tailwind: str
vue_tailwind: str
vue_css: str
svg: str
flutter:str
Stack = Literal[
"html_tailwind",
"react_tailwind",
"bootstrap",
"ionic_tailwind",
"vue_tailwind",
"vue_css",
"svg",
"flutter",
]