-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
122 lines (122 loc) · 3.59 KB
/
app.json
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "Sam",
"description": "A GPT based slack bot trained to specific personalities and use cases.",
"repository": "https://github.com/voiio/Sam",
"logo": "https://upload.wikimedia.org/wikipedia/commons/0/04/ChatGPT_logo.svg",
"keywords": [
"OpenAI",
"Slack",
"bot",
"GPT",
"AI"
],
"website": "https://github.com/voiio/Sam",
"env": {
"SLACK_APP_TOKEN": {
"description": "Your Slack app's token, starting with 'xapp-'",
"required": true
},
"SLACK_BOT_TOKEN": {
"description": "Your Slack bot's token, starting with 'xoxb-'",
"required": true
},
"OPENAI_API_KEY": {
"description": "Your OpenAI API key.",
"required": true
},
"OPENAI_ASSISTANT_ID": {
"description": "Your OpenAI assistant ID, starting with 'asst_'",
"required": true
},
"TTS_VOICE": {
"description": "The voice to use for text-to-speech. Defaults to 'alloy'.",
"required": false
},
"TTS_MODEL": {
"description": "The model to use for text-to-speech. Defaults to 'tts-1-hd'.",
"required": false
},
"STT_PROMPT": {
"description": "Specific words or acronyms for speech-to-text.",
"required": false
},
"MAX_PROMPT_TOKENS": {
"description": "The maximum number of tokens to use in a prompt.",
"required": false
},
"MAX_COMPLETION_TOKENS": {
"description": "The maximum number of tokens to use in a response.",
"required": false
},
"RANDOM_RUN_RATIO": {
"description": "How often the bot randomly responds in a group channel. Defaults to 0 (never).",
"required": false
},
"TIMEZONE": {
"description": "The timezone to use for scheduling. Defaults to 'UTC'.",
"required": false
},
"EMAIL_URL": {
"description": "The URL to send emails to. Disabled if not set.",
"required": false
},
"FROM_EMAIL": {
"description": "The email address to send emails from. Disabled if not set.",
"required": false
},
"EMAIL_WHITELIST_PATTERN": {
"description": "A regex pattern to match email addresses to allow sending emails to. Disabled if not set.",
"required": false
},
"GROUNDHOG_DAY_MODE": {
"description": "Whether to enable Groundhog Day mode. Defaults to false.",
"required": false
},
"BRAVE_SEARCH_API_KEY": {
"description": "Your Brave Search API key. Disabled if not set.",
"required": false
},
"BRAVE_SEARCH_LONGITUDE": {
"description": "The longitude to use for Brave Search. Disabled if not set.",
"required": false
},
"BRAVE_SEARCH_LATITUDE": {
"description": "The latitude to use for Brave Search. Disabled if not set.",
"required": false
},
"SENTRY_DSN": {
"description": "Your Sentry DSN. Disabled if not set.",
"required": false
},
"GITHUB_REPOS": {
"description": "A comma-separated list of GitHub the bot can post to. Disabled if not set.",
"required": false
},
"ALGOLIA_SEARCH_API_KEY": {
"description": "Your Algolia search API key. Disabled if not set.",
"required": false
},
"ALGOLIA_APPLICATION_ID": {
"description": "Your Algolia application ID. Disabled if not set.",
"required": false
},
"ALGOLIA_SEARCH_INDEX": {
"description": "The Algolia search index to use. Disabled if not set.",
"required": false
}
},
"formation": {
"bot": {
"quantity": 1,
"size": "basic"
}
},
"addons": [
"heroku-redis:mini"
],
"buildpacks": [
{
"url": "heroku/python"
}
]
}