From 204f45b150cec6ac05544682506b3119288377f9 Mon Sep 17 00:00:00 2001 From: Desmond Grealy <111158332+k-nearest-neighbor@users.noreply.github.com> Date: Sun, 5 Feb 2023 13:28:54 -0800 Subject: [PATCH] Update FAQ to address common questions we are seeing (#1193) * First draft of new FAQ copy * update answers for data license and hardware --- website/public/locales/en/index.json | 10 +++++++++- website/src/components/Faq.tsx | 4 ++-- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/website/public/locales/en/index.json b/website/public/locales/en/index.json index 7d8c9152..a6e89b9c 100644 --- a/website/public/locales/en/index.json +++ b/website/public/locales/en/index.json @@ -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:", diff --git a/website/src/components/Faq.tsx b/website/src/components/Faq.tsx index 46d5d19c..04b02729 100644 --- a/website/src/components/Faq.tsx +++ b/website/src/components/Faq.tsx @@ -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() { {FAQS.map((_, index) => { return (