Anonymous / app.py
Hadisur's picture
app
bffed5f verified
raw
history blame contribute delete
683 Bytes
import gradio as gr
import os
HF_TOKEN = os.getenv("HF_TOKEN")
with gr.Blocks(fill_height=True) as demo:
with gr.Sidebar():
gr.Markdown("# Anonymous 🎭")
gr.Markdown(
"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."
)
gr.load(
"models/WhiteRabbitNeo/WhiteRabbitNeo-V3-7B",
provider="featherless-ai",
token=HF_TOKEN
)
demo.launch()