File size: 239 Bytes
d4febae
 
 
 
 
 
1
2
3
4
5
6
export function isPythonAppPrompt(prompt: string) {
  const lowerCasePrompt = prompt.toLocaleLowerCase()
  return lowerCasePrompt.includes("python")
     || lowerCasePrompt.includes("streamlit")
     || lowerCasePrompt.includes("gradio")
}