package
Version:
v1.5.3
Opens a new window with list of versions in this module.
Published: Mar 6, 2023
License: AGPL-3.0
Opens a new window with license information.
Imports: 12
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
README
¶
介绍
🔔 注意:以下[]
符号内代表此处是需要填写内容,并且不需要[]
符号
配置参数
- 插件名:ChatGPT聊天,已支持
GPT-3.5-turbo
模型
- 权限:所有好友和群聊
- 数据来源:https://beta.openai.com
- 注意:请先私聊机器人配置
appKey
,相关秘钥申请地址点上面链接
- 指令:
-
set chatgpt apiKey [keys]
,(多个key用;
符号隔开),设置ChatGPT的apiKey,apiKey
可小写apikey
-
del chatgpt apiKey [keys]
,(多个key用;
符号隔开), 删除ChatGPT的apiKey,apiKey
可小写apikey
-
set chatgpt model [key=val]
,k
和v
请参考下面表格,没做过多校验,请保证设置正确
-
set chatgpt model reset
,重置GPT的模型配置
-
get chatgpt info
获取ChatGPT的信息
-
set chatgpt proxy [url]
设置api.openai.com的代理地址,需要完整的如:https://api.googlevideo.dev/v1
-
del chatgpt proxy
删除api.openai.com 代理地址
- 附录:
连续会话
- 说明:发送
开始ChatGPT会话 开始会话
即可进行连续会话,发送结束会话
即可结束会话,或5分钟没新的提问自动结束
- 指令:
-
开始会话
,在某个聊天室内开始会话
-
结束会话
,在某个聊天室内结束会话
-
清空会话
,清空上下文
单独提问
AI作画
预览:
Documentation
¶
type ApiKey struct {
Key string `gorm:"column:key;index"`
}
ApiKey apikey表,存放openai key
type ApiProxy struct {
Id uint `gorm:"column:id;index"`
Url string `gorm:"column:url;"`
}
ApiProxy ApiProxy表,存放openai 代理url地址
type GptModel struct {
Model string `gorm:"column:model"`
MaxTokens int `gorm:"column:max_tokens"`
Temperature float64 `gorm:"column:temperature"`
TopP float64 `gorm:"column:top_p"`
PresencePenalty float64 `gorm:"column:presence_penalty"`
FrequencyPenalty float64 `gorm:"column:frequency_penalty"`
ImageSize string `gorm:"column:image_size"`
}
GptModel gptmodel表,存放gpt模型相关配置参数
Source Files
¶
Click to show internal directories.
Click to hide internal directories.