Update version to v1.2.0

Add LaTex formula convert to image
This commit is contained in:
2024-11-06 22:56:22 +08:00
parent a6bd48aa4e
commit 49b1b0c345
3 changed files with 105 additions and 12 deletions

View File

@@ -1,5 +1,5 @@
plugins {
val kotlinVersion = "1.9.24"
val kotlinVersion = "1.8.10"
kotlin("jvm") version kotlinVersion
kotlin("plugin.serialization") version kotlinVersion
@@ -7,7 +7,7 @@ plugins {
}
group = "top.jie65535.mirai"
version = "1.1.0"
version = "1.2.0"
repositories {
mavenCentral()
@@ -16,8 +16,10 @@ repositories {
val openaiClientVersion = "3.8.2"
val ktorVersion = "2.3.12"
val jLatexMathVersion = "1.0.7"
dependencies {
implementation("com.aallam.openai:openai-client:$openaiClientVersion")
implementation("io.ktor:ktor-client-okhttp:$ktorVersion")
implementation("org.scilab.forge:jlatexmath:$jLatexMathVersion")
}