|
9 | 9 |
|
10 | 10 |
|
11 | 11 | ## Update
|
| 12 | +> ### 2024/4/21:Supporting the Suno plugin with Copilot. |
12 | 13 | > ### 2024/3/30:Support DALLE-3(Unofficial), get api key from https://dalle.feiyuyu.net/dashboard.
|
13 | 14 | > ### 2024/3/5:Images can be generated while chatting.
|
14 | 15 | > ### 2024/2/2:To optimize usage, recommended to re-read the README.
|
15 | 16 | > ### 2024/1/27:Add jail break version, but image uploads are currently not supported, and python version need 3.10+.
|
16 |
| -> ### 2024/1/15:Can create thread to chat with Copilot. |
17 | 17 |
|
18 | 18 | 
|
19 | 19 |
|
|
41 | 41 | * [version]:`default` can chat with Copilot, `jailbreak` chat with Sydney, but `jailbreak` image uploads are not currently supported.
|
42 | 42 | * [style]:Have 3 conversation style can choose, `creative`、`balanced` and `precise`.
|
43 | 43 | * [type]:Options for thread type, `public` or `private`.
|
| 44 | + * [plugin]:Currently only supports Suno. |
44 | 45 |
|
45 |
| -  |
46 | 46 | 
|
| 47 | +  |
47 | 48 |
|
48 | 49 | * image creator: `/create image [service][prompt]`
|
49 | 50 |
|
@@ -115,28 +116,28 @@ pip install -r requirements.txt
|
115 | 116 | IMAGE_MAX_CREATE_SEC=300
|
116 | 117 |
|
117 | 118 | # Set unofficial DALLE-3 api key, api key can get from https://dalle.feiyuyu.net/dashboard
|
118 |
| - dalle3_unofficial_apikey= |
| 119 | + DALLE3_UNOFFICIAL_APIKEY= |
119 | 120 |
|
120 | 121 | # (Optional) Allow mention bot only in specific channel.
|
121 |
| - MENTION_CHANNEL_ID= |
| 122 | + MENTION_CHANNEL_ID=1227670969702754857 |
122 | 123 |
|
123 |
| - # (Optional) Allow each commands only in specific channel. |
124 |
| - # specific channel for /cookies setting |
125 |
| - COOKIES_SETTING_CHANNEL_ID= |
| 124 | + # (Optional) Allow each commands in some channels. |
| 125 | + # specific channel(s) for /cookies setting |
| 126 | + COOKIES_SETTING_CHANNEL_ID=1227670969702754857,1227327094070254857 |
126 | 127 |
|
127 |
| - # specific channel for /dalle3 setting |
128 |
| - DALLE3_SETTING_CHANNEL_ID= |
| 128 | + # specific channel(s) for /dalle3 setting |
| 129 | + DALLE3_SETTING_CHANNEL_ID=122767096970275483 |
129 | 130 |
|
130 |
| - # specific channel for /copilot |
| 131 | + # specific channel(s) for /copilot |
131 | 132 | CHAT_CHANNEL_ID=
|
132 | 133 |
|
133 |
| - # specific channel for /create image |
| 134 | + # specific channel(s) for /create image |
134 | 135 | CREATE_IMAGE_CHANNEL_ID=
|
135 | 136 |
|
136 |
| - # specific channel for /reset conversation |
| 137 | + # specific channel(s) for /reset conversation |
137 | 138 | RESET_CHAT_CHANNEL_ID=
|
138 | 139 |
|
139 |
| - # specific channel for /help |
| 140 | + # specific channel(s) for /help |
140 | 141 | HELP_CMD_CHANNEL_ID=
|
141 | 142 | ```
|
142 | 143 |
|
|
0 commit comments