forked from Zero6992/chatGPT-discord-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
42 lines (34 loc) · 1.19 KB
/
.env.example
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
# Discord Bot token https://discord.com/developers/applications
DISCORD_BOT_TOKEN=
# Unofficial OpenAI ChatGPT authentication (only Plus acoount) # https://chat.openai.com/api/auth/session
PUID=
ACCESS_TOKEN=
# Official OpenAI API authentication
OPENAI_API_KEY=
# Bard session_id(__Secure-1PSID and __Secure_1PSIDTS)
BARD_SECURE_1PSID=
BARD_SECURE_1PSIDTS=
# ----------------------- #
# Optional setting
# CHAT_MODEL option: OFFICIAL, UNOFFICIAL, Bard, Bing
CHAT_MODEL=OFFICIAL
# GPT_ENGINE option: gpt-3.5-turbo, gpt-4
GPT_ENGINE=gpt-3.5-turbo
LOGGING=True
REPLYING_ALL=False
# Channel using to send the starting-prompt
DISCORD_CHANNEL_ID=
REPLYING_ALL_DISCORD_CHANNEL_ID=
# Enable auto-login for Google Bard and Microsoft Bing to fetch cookies
# Version of your chrome browser
chrome_version=
# Add auto-login for Microsoft Bing, fill in your Microsoft Bing account and password
bing_enable_auto_login=False # True/False
bing_account=
bing_password=
# Add auto-login for Google Bard, fill in your Microsoft Bing account and password
# NOTICE!!! AUTO-LOGIN ONLY WORKS FOR GOOGLE ACCOUNT THAT DOES NOT HAVE 2FA
bard_enable_auto_login=False # True/False
google_account=
google_password=
# ----------------------- #