From 09efc4dd8ddc0b91630813cce9d439d6c2754544 Mon Sep 17 00:00:00 2001 From: Fraser Date: Tue, 11 Jul 2023 23:55:28 -0400 Subject: [PATCH] add one particularly good question to the standard set --- api/prompteng/data/questions.csv | 1 + web/src/searchbox.tsx | 31 ++++++++++++++++--------------- 2 files changed, 17 insertions(+), 15 deletions(-) diff --git a/api/prompteng/data/questions.csv b/api/prompteng/data/questions.csv index 3bff244..af1d1b1 100644 --- a/api/prompteng/data/questions.csv +++ b/api/prompteng/data/questions.csv @@ -1,4 +1,5 @@ "I'm not convinced, why is this important?" +"What are ""RAAPs""?" "What are ""scaling laws"" and how are they relevant to safety?" "What does the term ""x-risk"" mean?" "What is ""FOOM""?" diff --git a/web/src/searchbox.tsx b/web/src/searchbox.tsx index 30a8c18..e87038b 100644 --- a/web/src/searchbox.tsx +++ b/web/src/searchbox.tsx @@ -11,25 +11,26 @@ export type Followup = { // initial questions to fill the search box with. export const initialQuestions: string[] = [ - "What is an AI arms race?", - "What is AI safety and alignment?", - "I'm not convinced, why is this important?", - "What are some of the different research approaches?", - "How can I help with AI safety and alignment?", - "Why would we expect AI to be \"misaligned by default\"?", - "What are the differences between Inner and Outer alignment?", "Are there any regulatory efforts aimed at addressing AI safety and alignment concerns?", - "What are \"scaling laws\" and how are they relevant to safety?", - "How could an AI possibly be an x-risk when some populations aren't even connected to the internet?", - "What is an Intelligence Explosion?", - "What is \"FOOM\"?", - "What is a hard takeoff?", + "How can I help with AI safety and alignment?", "How could a predictive model - like an LLM - act like an agent?", - "What does the term \"x-risk\" mean?", - "What is a mesa-optimizer?", + "How could an AI possibly be an x-risk when some populations aren't even connected to the internet?", + "I'm not convinced, why is this important?", "Summarize the differences in opinion between Eliezer Yudkowsky and Paul Christiano.", - "What is the \"orthogonality thesis\"?", + "What are \"RAAPs\"?", + "What are \"scaling laws\" and how are they relevant to safety?", + "What are some of the different research approaches?", + "What are the differences between Inner and Outer alignment?", + "What does the term \"x-risk\" mean?", + "What is \"FOOM\"?", "What is \"instrumental convergence\"?", + "What is a hard takeoff?", + "What is a mesa-optimizer?", + "What is AI safety and alignment?", + "What is an AI arms race?", + "What is an Intelligence Explosion?", + "What is the \"orthogonality thesis\"?", + "Why would we expect AI to be \"misaligned by default\"?", ]