Spaces:
Sleeping
Sleeping
import streamlit as st | |
st.title("GK AI Detector") # Your app title | |
user_text = st.text_input("Enter text here") # User input | |
if user_text: | |
st.success(f"Your text: {user_text}") # Display result |