ai-app-factory / src /isStreamlitAppPrompt.mts
jbilcke-hf's picture
jbilcke-hf HF staff
add example for gradio
312de82
raw
history blame
156 Bytes
export function isStreamlitAppPrompt(prompt: string) {
const lowerCasePrompt = prompt.toLocaleLowerCase()
return lowerCasePrompt.includes("streamlit")
}