-
Notifications
You must be signed in to change notification settings - Fork 8
/
app.json
34 lines (34 loc) · 875 Bytes
/
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
{
"name": "ChatGPT Telegram Bot",
"description": "An advanced Telegram bot using OpenAI's ChatGPT and Perplexity AI.",
"repository": "https://github.com/kirill-markin/chatgpt-telegram-bot-telegraf",
"env": {
"TELEGRAM_BOT_TOKEN": {
"description": "Your Telegram bot token obtained via https://t.me/BotFather",
"required": true
},
"OPENAI_API_KEY": {
"description": "Your OpenAI API key",
"required": true
},
"PERPLEXITY_API_KEY": {
"description": "Your Perplexity API key for enhanced search capabilities",
"required": false
},
"SETTINGS_PATH": {
"description": "Path to the settings file",
"value": "./settings/private_en.yaml",
"hidden": true
}
},
"addons": [
{
"plan": "heroku-postgresql"
}
],
"buildpacks": [
{
"url": "heroku/nodejs"
}
]
}