Spaces:
Running
Running
File size: 565 Bytes
c13a453 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
export function isWebAppPrompt(prompt: string) {
const lowerCasePrompt = prompt.toLocaleLowerCase().trim()
return (
lowerCasePrompt.startsWith("code a web") ||
lowerCasePrompt.startsWith("code an app") ||
lowerCasePrompt.startsWith("code a app") ||
lowerCasePrompt.startsWith("make a web") ||
lowerCasePrompt.startsWith("make an app") ||
lowerCasePrompt.startsWith("build a web") ||
lowerCasePrompt.startsWith("build an app") ||
lowerCasePrompt.startsWith("create a web") ||
lowerCasePrompt.startsWith("create an app")
)
}
|