Update FAQ to address common questions we are seeing (#1193)

* First draft of new FAQ copy

* update answers for data license and hardware
This commit is contained in:
Desmond Grealy
2023-02-05 22:28:54 +01:00
committed by GitHub
parent f05d6abcb7
commit 204f45b150
2 changed files with 11 additions and 3 deletions
+9 -1
View File
@@ -6,7 +6,15 @@
"q0": "How far along is this project?",
"a0": "We are in the early stages of development, working from established research in applying RLHF to large language models.",
"q1": "Who is behind Open Assistant?",
"a1": "Open Assistant is a project organized by LAION and individuals around the world interested in bringing this technology to everyone."
"a1": "Open Assistant is a project organized by LAION and individuals around the world interested in bringing this technology to everyone.",
"q2": "What license does Open Assistant use?",
"a2": "The code and models are licensed under the Apache 2.0 license.",
"q3": "Will the training data also be released?",
"a3": "Yes, under CC BY 4.0.",
"q4": "Will Open Assistant be free?",
"a4": "Yes, Open Assistant will be free to use and modify.",
"q5": "What hardware will be required to run the models?",
"a5": "There will be versions which will be runnable on consumer hardware."
},
"faq_title": "Frequently Asked Questions",
"join_us_description": "All open source projects begin with people like you. Open source is the belief that if we collaborate we can together gift our knowledge and technology to the world for the benefit of humanity. Are you in? Find us here:",
+2 -2
View File
@@ -3,7 +3,7 @@ import { useTranslation } from "next-i18next";
import { Container } from "./Container";
const FAQS = Array.from({ length: 2 });
const FAQS = Array.from({ length: 6 });
export function Faq() {
const { colorMode } = useColorMode();
@@ -21,7 +21,7 @@ export function Faq() {
</Box>
<List
role="list"
className="mx-auto mt-16 grid max-w-2xl grid-cols-1 gap-8 sm:mt-20 lg:max-w-none lg:grid-cols-3"
className="mx-auto mt-16 grid max-w-2xl grid-cols-1 gap-16 sm:mt-20 lg:max-w-none lg:grid-cols-3"
>
{FAQS.map((_, index) => {
return (