This repository was archived by the owner on Nov 24, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +5
-6
lines changed
src/main/kotlin/ltd/guimc/lgzbot Expand file tree Collapse file tree 3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ dependencies {
26
26
implementation(" org.xerial:sqlite-jdbc:3.46.0.0" )
27
27
implementation(" org.apache.commons:commons-lang3:3.16.0" )
28
28
implementation(" org.apache.commons:commons-imaging:1.0-alpha1" )
29
- implementation(" ai.djl.onnxruntime:onnxruntime-engine:0.23 .0" )
29
+ implementation(" ai.djl.onnxruntime:onnxruntime-engine:0.27 .0" )
30
30
31
31
compileOnly(" top.mrxiaom.mirai:overflow-core-api:$overflow_version " )
32
32
compileOnly(" top.mrxiaom.mirai:overflow-core:$overflow_version " )
Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ import kotlinx.coroutines.Dispatchers
14
14
import kotlinx.coroutines.Job
15
15
import kotlinx.coroutines.launch
16
16
import kotlinx.coroutines.runInterruptible
17
- import ltd.guimc.dlm.DLModel
18
17
import ltd.guimc.lgzbot.command.*
19
18
import ltd.guimc.lgzbot.files.Config
20
19
import ltd.guimc.lgzbot.files.GithubSubConfig
@@ -156,7 +155,7 @@ object PluginMain : KotlinPlugin(
156
155
webHookService.start()
157
156
logger.info(" 正在初始化 LL4J" )
158
157
LL4JUtils .init ()
159
- DLModel .init ()
158
+ // DLModel.init()
160
159
thread { LL4JUtils .downloadModel() }
161
160
logger.info(" $name v$version 加载好了喵" )
162
161
}
@@ -247,6 +246,6 @@ object PluginMain : KotlinPlugin(
247
246
registerListenerHost(BakaListener )
248
247
registerListenerHost(AutoQuit )
249
248
registerListenerHost(SelfMessageListener )
250
- registerListenerHost(NaiLongImageListener )
249
+ // registerListenerHost(NaiLongImageListener)
251
250
}
252
251
}
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ object ToggleCheckCommand : CompositeCommand(
86
86
}
87
87
}
88
88
89
- @SubCommand(" nailong" )
89
+ /* @SubCommand("nailong")
90
90
@Description("开/关奶龙图片检测")
91
91
suspend fun CommandSender.iiI11i1I1i1Iai1I1i11I1i1I1() {
92
92
if (getGroupOrNull() == null) {
@@ -107,5 +107,5 @@ object ToggleCheckCommand : CompositeCommand(
107
107
} else {
108
108
sendMessage("只有管理才能使用这个指令的说...")
109
109
}
110
- }
110
+ }*/
111
111
}
You can’t perform that action at this time.
0 commit comments