offensive-hugging-face / offensive-osint-hug.py
CSI Linux
initial osint model
e8bd696
raw
history blame contribute delete
230 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
def greet_interface():
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()
if __name__ == "__main__":
greet_interface()