import { useState } from "react"; import Accordion from "@mui/material/Accordion"; import { AccordionDetails, AccordionSummary, Box, Container, Link, Typography, } from "@mui/material"; import styles from "./FAQ-styles"; import { ExpandMore } from "@mui/icons-material"; export function FAQ() { const [expanded, setExpanded] = useState(false); const handleChange = (panel) => (event, isExpanded) => { setExpanded(expanded === panel ? false : panel); }; const title = ( Frequently asked questions ); return ( {title} } id="panel1d-header"> How do I submit my model for examination? We support examination of all models published on Hugging Face. To examine a model, simply provide the Hugging Face path to the model, a Hugging Face token with read permission, and select the service/test that you want to perform. To examine a private model, simply provide the model name, API endpoint, and API token. } id="panel2d-header"> How long does it take to examine my model? The examination time of a model is dependent on the model's inference time. For a 7B parameter model such as LLaMA 2, the average examination time is 15 minutes. } id="panel3d-header"> What makes your services stand out from others in the market? Our product unifies the broad landscape of model safety and security concerns via a single report. We conduct a wide range of tests under each service, providing users with detailed breakdowns and insights of the results. Users can compare models via our interactive leaderboard and export results as a PDF report. } id="panel4d-header"> How can the examination improve my model? The examination produces a report of the model's robustness across different areas of safety and security. These results reveal threats that the model can be guarded against and identify areas where model safety can be improved. ); } export default FAQ;