ai-app-factory / src /isPythonAppPrompt.mts
jbilcke-hf's picture
jbilcke-hf HF staff
work in progress to allow people passing their own token
d4febae
raw
history blame
239 Bytes
export function isPythonAppPrompt(prompt: string) {
const lowerCasePrompt = prompt.toLocaleLowerCase()
return lowerCasePrompt.includes("python")
|| lowerCasePrompt.includes("streamlit")
|| lowerCasePrompt.includes("gradio")
}