import React, { useState } from 'react' export function FAQ({}) { return (

Frequently asked questions

Followgraph looks up all the people you follow on Hugging Face, and then the people they follow. Then it sorts them by the number of mutuals, or otherwise by how popular those accounts are.
It then shows the list with Hugging Face links to follow them.
Not at all! Followgraph uses public APIs to fetch potential people you can follow on Hugging Face. In fact, it only does inauthenticated network requests. Don't worry. The list of suggestions will load in 30 seconds or so. Sometimes it gets stuck because one or more of the queries made to Hugging Face time out. This is not a problem, because the rest of the queries will work as expected. Make sure you have no typos in the Hugging Face handle, and make sure you follow at least a few people to seed the search. Click the "Fork me on Github" link on the top right, and open up an issue. Well, maybe it should be. In the meantime, you can use this website. While it would be a useful feature, Followgraph does not{' '} plan to offer this functionality as it would facilitate inorganic and potentially malicious behaviour. Followgraph does not include Hugging Face staff members to increase the diversity of the suggestions, and promote the discovery of new accounts.
) } function FAQItem({ defaultSelected, title, children, }: { defaultSelected?: boolean title: string children: React.ReactNode }) { const [selected, setSelected] = useState(defaultSelected) return ( <>

{selected ? (
{children}
) : null} ) }