-
Notifications
You must be signed in to change notification settings - Fork 7
/
meetup.ts
59 lines (58 loc) · 2.01 KB
/
meetup.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import { Meetup } from './types/Meetup'
export const meetup: Meetup = {
city: {
name: 'Atlanta',
position: 'left',
},
description:
'The Atlanta BitDevs is a place for free and open Bitcoin education in Atlanta. Discussions will be technical but are open to people of all skill levels. Join the community and #LearnBitcoinTogether!',
colors: {
primary: {
hex: '#FFFFFF',
rgb: 'rgb(255, 153, 0)',
},
secondary: {
hex: '#333333',
rgb: 'rgb(51, 51, 51)',
},
tertiary: {
hex: '#FF9900',
rgb: 'rgb(255, 255, 255)',
},
},
mainNav: [
{
text: 'Home',
link: '/',
},
{
text: 'About',
link: '/page/about',
},
{
text: 'Meetup',
link: 'https://www.meetup.com/atlantabitdevs/',
},
{
text: 'Contact',
link: '/page/contact',
},
],
image: '/atlanta-bitdevs-poster.jpg',
ai: [
{
name: 'Summarized',
system:
'You create useful summaries of long, technical articles in a "cliff notes" format. Never write from the perspective of the author of the text given to you; always describe the author\'s points of view or claims in the third person. Try to highlight what is meaningful for a human user.',
promptTemplate:
'Summarize the following in a cliff notes format using no more than 160 words, splitting into paragraphs where appropriate:',
},
{
name: 'Explain Like I’m Five',
system:
'You summarize articles in a friendly, approachable "explain like I\'m five" format. Never write from the perspective of the author of the text given to you; always describe the author\'s points of view or claims in the third person. Try to highlight what is meaningful for a human user, de-emphasizing gratuitous details. Most importantly, assume that the user may not be familiar with the technical jargon in the original text.',
promptTemplate:
'Summarize the following in an ELI5 format using a maximum of 60 words:',
},
],
}