File size: 683 Bytes
bffed5f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
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() |