Update version to v1.1.0

Add timeout config
Add Forward messages when the text is too long
This commit is contained in:
2024-07-29 10:24:36 +08:00
parent 7c26c8e590
commit a6bd48aa4e
4 changed files with 32 additions and 8 deletions

View File

@@ -1,5 +1,5 @@
plugins {
val kotlinVersion = "1.8.10"
val kotlinVersion = "1.9.24"
kotlin("jvm") version kotlinVersion
kotlin("plugin.serialization") version kotlinVersion
@@ -7,15 +7,15 @@ plugins {
}
group = "top.jie65535.mirai"
version = "1.0.0"
version = "1.1.0"
repositories {
mavenCentral()
maven("https://maven.aliyun.com/repository/public")
}
val openaiClientVersion = "3.6.2"
val ktorVersion = "2.3.7"
val openaiClientVersion = "3.8.2"
val ktorVersion = "2.3.12"
dependencies {
implementation("com.aallam.openai:openai-client:$openaiClientVersion")