Some checks failed
CI/CD Pipeline / build-and-deploy (push) Failing after 2h4m17s
- 在 llmx-core 中添加了多模态聊天相关的数据结构和接口 - 在 llmx-impl-bailian 中实现了多模态聊天的适配器和服务 - 新增了多模态聊天的控制器和相关配置- 重构了原有的聊天请求和响应结构,支持多模态内容
14 lines
478 B
Plaintext
14 lines
478 B
Plaintext
extra {
|
|
// 开启springboot
|
|
setProperty(ProjectFlags.USE_SPRING_BOOT_WEB, true)
|
|
setProperty(ProjectFlags.USE_SPRING_CLOUD_BOM, true)
|
|
}
|
|
dependencies {
|
|
// Nacos 服务发现和配置
|
|
implementation(libs.springCloudStarter.alibaba.nacos.discovery)
|
|
implementation(libs.forgeBoot.core.extension)
|
|
implementation(libs.forgeBoot.webmvc.version.springBootStarter)
|
|
implementation(libs.jackson.module.kotlin)
|
|
implementation(project(Modules.Core.API))
|
|
}
|