-
Notifications
You must be signed in to change notification settings - Fork 7
/
meetup.sample.js
55 lines (55 loc) · 1.41 KB
/
meetup.sample.js
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
'use strict'
Object.defineProperty(exports, '__esModule', { value: true })
exports.meetup = void 0
exports.meetup = {
city: {
name: 'New',
position: 'left',
},
description:
'BitDevs is a community for those interested in discussing and participating in the research and development of Bitcoin and related protocols',
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/BitDevsNYC/',
},
],
image: '/new-bitdevs-default.jpg',
ai: [
{
name: 'Summarized',
system:
'You create useful summaries of long, technical articles in a "cliff notes" format.',
promptTemplate:
'Summarize the following using no more than 160 words, splitting into paragraphs where appropriate:',
},
{
name: 'Explain Like I’m Five',
system:
'You summarize articles in an "explain like I’m five" format. Assume that the user may not be familiar with the technical jargon in the original text.',
promptTemplate: 'Summarize the following using a maximum of 60 words:',
},
],
}