Hadisur commited on
Commit
bffed5f
·
verified ·
1 Parent(s): 523a2f3
Files changed (1) hide show
  1. app.py +18 -0
app.py ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ import os
3
+
4
+ HF_TOKEN = os.getenv("HF_TOKEN")
5
+
6
+ with gr.Blocks(fill_height=True) as demo:
7
+ with gr.Sidebar():
8
+ gr.Markdown("# Anonymous 🎭")
9
+ gr.Markdown(
10
+ "Anonymous leverages advanced AI to provide instant answers, code suggestions, and practical guidance for cybersecurity and ethical hacking tasks. It can generate scripts, explain security concepts, and offer best practices, empowering both beginners and professionals to learn and improve their hacking and defense skills."
11
+ )
12
+ gr.load(
13
+ "models/WhiteRabbitNeo/WhiteRabbitNeo-V3-7B",
14
+ provider="featherless-ai",
15
+ token=HF_TOKEN
16
+ )
17
+
18
+ demo.launch()