LLMX/buildSrc/src/main/kotlin/Modules.kt
gewuyou 7d71f4d32d
Some checks failed
CI/CD Pipeline / build-and-deploy (push) Failing after 2h4m17s
feat(core): 新增多模态聊天功能
- 在 llmx-core 中添加了多模态聊天相关的数据结构和接口
- 在 llmx-impl-bailian 中实现了多模态聊天的适配器和服务
- 新增了多模态聊天的控制器和相关配置- 重构了原有的聊天请求和响应结构,支持多模态内容
2025-05-08 21:47:00 +08:00

22 lines
661 B
Kotlin
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* Modules对象用于统一管理项目中的各个模块路径
* 主要作用是提供一个集中定义和访问模块路径的地方,以便在项目中保持一致性和可维护性
*
* @since 2025-04-03 09:07:33
* @author gewuyou
*/
object Modules {
/**
* Core对象定义了核心模块的相关路径
* 主要包含核心模块的SPIService Provider Interface路径
*/
object Core{
// llmx-core-spi模块的路径用于定义核心功能的SPI
const val SPI = ":llmx-core:llmx-core-spi"
const val API = ":llmx-core:llmx-core-api"
const val COMMON = ":llmx-core:llmx-core-common"
}
}