Spaces:
No application file
No application file
CSI Linux
commited on
Commit
·
e8bd696
1
Parent(s):
7570418
initial osint model
Browse files- offensive-osint-hug.py +11 -0
offensive-osint-hug.py
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
|
3 |
+
def greet(name):
|
4 |
+
return "Hello " + name + "!!"
|
5 |
+
|
6 |
+
def greet_interface():
|
7 |
+
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
8 |
+
iface.launch()
|
9 |
+
|
10 |
+
if __name__ == "__main__":
|
11 |
+
greet_interface()
|