- 新增 llmhub-core-service 模块,实现聊天和嵌入功能 - 添加 LLMService 接口及其实现类 LLMServiceImpl - 实现了与 LLM 提供商的交互接口 LLMProvider- 新增模型路由管理器 ModelRouteManager 和相关配置 - 添加开发和生产环境配置文件 - 更新项目依赖,引入 Spring Cloud 和 Nacos
10 lines
331 B
Plaintext
10 lines
331 B
Plaintext
apply {
|
|
plugin(libs.plugins.spring.dependency.management.get().pluginId)
|
|
plugin(libs.plugins.spring.boot.get().pluginId)
|
|
plugin(libs.plugins.kotlin.plugin.spring.get().pluginId)
|
|
}
|
|
dependencies {
|
|
val libs = rootProject.libs
|
|
compileOnly(libs.kotlinx.coruntes.reactor)
|
|
compileOnly(libs.springBootStarter.web)
|
|
} |