File size: 156 Bytes
e9674a6
 
 
 
1
2
3
4
export function isStreamlitAppPrompt(prompt: string) {
  const lowerCasePrompt = prompt.toLocaleLowerCase()
  return lowerCasePrompt.includes("streamlit")
}