LordXido commited on
Commit
e2bcfa7
·
verified ·
1 Parent(s): a0bffde

Delete app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -14
app.py DELETED
@@ -1,14 +0,0 @@
1
- import gradio as gr
2
-
3
- def reflex_guard_sim(input_text):
4
- return f"🛡️ ReflexGuard received: {input_text}"
5
-
6
- demo = gr.Interface(
7
- fn=reflex_guard_sim,
8
- inputs="text",
9
- outputs="text",
10
- title="Codex ReflexGuard Live",
11
- description="Send a simulated command to the ReflexGuard system."
12
- )
13
-
14
- demo.launch()