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()