import { useColorMode } from "@chakra-ui/react"; import { Container } from "./Container"; const faqs = [ [ { question: "How far along is this project?", answer: "We are in the early stages of development, working from established research in applying RLHF to large language models.", }, ], [ { question: "Who is behind Open Assistant?", answer: "Open Assistant is a project organized by LAION and individuals around the world interested in bringing this technology to everyone.", }, ], [ // { // question: 'Where can I learn more?', // answer: // 'Please feel free to reach out to us on Discord. We are happy to answer any questions you may have.', // }, ], ]; export function Faq() { const { colorMode } = useColorMode(); const headingColorClass = colorMode === "light" ? "text-gray-900" : "text-white"; const textColorClass = colorMode === "light" ? "text-gray-700" : "text-gray-100"; return (

Frequently Asked Questions

{/*

If you have anything else you want to ask,{' '} reach out to us .

*/}
); }