screenshot-to-code/backend/prompts/types.py
carlosziegler d8241469e1 🔧 fix(imported_code_prompts.py): add prompt for react_css stack
 feat(imported_code_prompts.py): add prompt for react_css stack
2024-02-06 23:10:50 +01:00

23 lines
367 B
Python

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