2024-03-29 16:26:33 +08:00
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2024-04-07 10:54:47 +08:00
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2024-03-29 16:26:33 +08:00
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
|
|
<groupId>com.bytedesk</groupId>
|
2024-08-06 08:18:01 +08:00
|
|
|
|
<artifactId>modules</artifactId>
|
|
|
|
|
|
<version>${revision}</version>
|
2024-03-29 16:26:33 +08:00
|
|
|
|
</parent>
|
2024-07-09 11:10:23 +08:00
|
|
|
|
|
2024-08-06 08:18:01 +08:00
|
|
|
|
<groupId>com.bytedesk</groupId>
|
2024-05-21 09:02:02 +08:00
|
|
|
|
<artifactId>bytedesk-module-ai</artifactId>
|
2024-08-06 08:18:01 +08:00
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
|
|
2024-07-05 17:07:22 +08:00
|
|
|
|
<name>bytedesk-module-ai</name>
|
2025-03-03 22:35:18 +08:00
|
|
|
|
<description>https://www.bytedesk.com</description>
|
2024-03-29 16:26:33 +08:00
|
|
|
|
|
|
|
|
|
|
<properties>
|
2025-04-18 14:21:45 +08:00
|
|
|
|
<ollama4j.version>1.0.100</ollama4j.version>
|
2025-02-25 15:05:09 +08:00
|
|
|
|
<jsonp.version>1.18.3</jsonp.version>
|
2025-04-19 13:22:20 +08:00
|
|
|
|
<!-- <selenium.version>4.30.0</selenium.version> -->
|
2025-08-25 14:16:11 +08:00
|
|
|
|
<!-- <ai.djl.version>0.32.0</ai.djl.version> -->
|
2025-08-27 12:13:28 +08:00
|
|
|
|
<zhipuai.oapi-java-sdk.version>release-V4-2.4.3</zhipuai.oapi-java-sdk.version>
|
2025-10-15 10:28:28 +08:00
|
|
|
|
<mcp.version>0.14.1</mcp.version>
|
2024-03-29 16:26:33 +08:00
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
2025-09-30 11:08:09 +08:00
|
|
|
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.springframework.ai/spring-ai-autoconfigure-retry -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.ai</groupId>
|
|
|
|
|
|
<artifactId>spring-ai-autoconfigure-retry</artifactId>
|
|
|
|
|
|
<version>${spring-ai.version}</version>
|
|
|
|
|
|
</dependency>
|
2025-09-30 12:12:21 +08:00
|
|
|
|
|
2025-04-18 11:50:14 +08:00
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.springframework.ai/spring-ai-retry -->
|
2025-04-18 11:04:51 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.ai</groupId>
|
|
|
|
|
|
<artifactId>spring-ai-retry</artifactId>
|
|
|
|
|
|
<version>${spring-ai.version}</version>
|
2025-05-08 11:51:39 +08:00
|
|
|
|
<!-- 排除 io.swagger.core.v3:swagger-annotations 依赖 -->
|
|
|
|
|
|
<exclusions>
|
|
|
|
|
|
<exclusion>
|
|
|
|
|
|
<groupId>io.swagger.core.v3</groupId>
|
2025-09-04 09:44:57 +08:00
|
|
|
|
<artifactId>swagger-annotations-jakarta</artifactId>
|
2025-05-08 11:51:39 +08:00
|
|
|
|
</exclusion>
|
|
|
|
|
|
</exclusions>
|
2025-04-18 11:04:51 +08:00
|
|
|
|
</dependency>
|
2025-04-23 14:19:50 +08:00
|
|
|
|
|
2025-04-21 15:21:16 +08:00
|
|
|
|
<!-- rag -->
|
|
|
|
|
|
<!-- https://docs.spring.io/spring-ai/reference/api/retrieval-augmented-generation.html -->
|
2025-04-19 00:28:19 +08:00
|
|
|
|
<!--
|
2025-04-21 15:21:16 +08:00
|
|
|
|
https://mvnrepository.com/artifact/org.springframework.ai/spring-ai-advisors-vector-store -->
|
2024-08-06 08:18:01 +08:00
|
|
|
|
<dependency>
|
2024-03-29 16:26:33 +08:00
|
|
|
|
<groupId>org.springframework.ai</groupId>
|
2025-04-21 15:21:16 +08:00
|
|
|
|
<artifactId>spring-ai-advisors-vector-store</artifactId>
|
|
|
|
|
|
<version>${spring-ai.version}</version>
|
2025-05-23 21:52:26 +08:00
|
|
|
|
<!-- 排除 io.swagger.core.v3:swagger-annotations 依赖 -->
|
|
|
|
|
|
<exclusions>
|
|
|
|
|
|
<exclusion>
|
|
|
|
|
|
<groupId>io.swagger.core.v3</groupId>
|
2025-09-04 09:44:57 +08:00
|
|
|
|
<artifactId>swagger-annotations-jakarta</artifactId>
|
2025-05-23 21:52:26 +08:00
|
|
|
|
</exclusion>
|
|
|
|
|
|
</exclusions>
|
2025-04-21 15:21:16 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.springframework.ai/spring-ai-rag -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.ai</groupId>
|
|
|
|
|
|
<artifactId>spring-ai-rag</artifactId>
|
2025-04-17 14:01:02 +08:00
|
|
|
|
<version>${spring-ai.version}</version>
|
2025-02-13 13:48:40 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
|
2025-04-17 09:43:44 +08:00
|
|
|
|
<!-- llm -->
|
2025-02-13 13:48:40 +08:00
|
|
|
|
<!-- https://docs.spring.io/spring-ai/reference/api/chat/deepseek-chat.html -->
|
2025-04-23 14:19:50 +08:00
|
|
|
|
<!--
|
|
|
|
|
|
https://mvnrepository.com/artifact/org.springframework.ai/spring-ai-starter-model-openai -->
|
2025-02-13 13:48:40 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.ai</groupId>
|
2025-04-21 18:26:49 +08:00
|
|
|
|
<artifactId>spring-ai-starter-model-openai</artifactId>
|
2025-05-14 09:34:50 +08:00
|
|
|
|
<version>${spring-ai.version}</version>
|
2024-08-06 08:18:01 +08:00
|
|
|
|
</dependency>
|
2025-04-23 14:19:50 +08:00
|
|
|
|
<!--
|
|
|
|
|
|
https://mvnrepository.com/artifact/org.springframework.ai/spring-ai-starter-model-ollama -->
|
2024-06-12 16:32:58 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.ai</groupId>
|
2025-04-21 18:26:49 +08:00
|
|
|
|
<artifactId>spring-ai-starter-model-ollama</artifactId>
|
2025-05-14 09:34:50 +08:00
|
|
|
|
<version>${spring-ai.version}</version>
|
2025-04-23 14:19:50 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<!--
|
2025-07-18 16:47:41 +08:00
|
|
|
|
https://mvnrepository.com/artifact/org.springframework.ai/spring-ai-starter-model-deepseek -->
|
2025-07-18 07:18:38 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.ai</groupId>
|
|
|
|
|
|
<artifactId>spring-ai-starter-model-deepseek</artifactId>
|
|
|
|
|
|
<version>${spring-ai.version}</version>
|
|
|
|
|
|
</dependency>
|
2025-07-22 08:41:04 +08:00
|
|
|
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.springframework.ai/spring-ai-starter-model-minimax -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.ai</groupId>
|
|
|
|
|
|
<artifactId>spring-ai-starter-model-minimax</artifactId>
|
|
|
|
|
|
<version>${spring-ai.version}</version>
|
|
|
|
|
|
</dependency>
|
2025-08-27 12:13:28 +08:00
|
|
|
|
<!--
|
|
|
|
|
|
https://mvnrepository.com/artifact/org.springframework.ai/spring-ai-starter-model-zhipuai -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.ai</groupId>
|
|
|
|
|
|
<artifactId>spring-ai-starter-model-zhipuai</artifactId>
|
|
|
|
|
|
<version>${spring-ai.version}</version>
|
|
|
|
|
|
</dependency>
|
2025-07-16 08:52:59 +08:00
|
|
|
|
<!-- spring ai 官方无法正常统计 token 使用量,使用这个zhipuai 官方库 -->
|
|
|
|
|
|
<!-- https://github.com/MetaGLM/zhipuai-sdk-java-v4 -->
|
|
|
|
|
|
<!-- https://bigmodel.cn/dev/api/devguide/sdk-install -->
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/cn.bigmodel.openapi/oapi-java-sdk -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>cn.bigmodel.openapi</groupId>
|
|
|
|
|
|
<artifactId>oapi-java-sdk</artifactId>
|
2025-08-27 12:13:28 +08:00
|
|
|
|
<version>${zhipuai.oapi-java-sdk.version}</version>
|
2024-08-28 09:32:44 +08:00
|
|
|
|
</dependency>
|
2025-09-23 09:56:36 +08:00
|
|
|
|
<!-- https://docs.bigmodel.cn/cn/guide/models/vlm/glm-4.5v#java -->
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/ai.z.openapi/zai-sdk -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>ai.z.openapi</groupId>
|
|
|
|
|
|
<artifactId>zai-sdk</artifactId>
|
|
|
|
|
|
<version>0.0.5.1</version>
|
|
|
|
|
|
</dependency>
|
2024-08-28 09:32:44 +08:00
|
|
|
|
|
2025-05-14 14:04:02 +08:00
|
|
|
|
<!-- vector store -->
|
|
|
|
|
|
<!-- https://docs.spring.io/spring-ai/reference/api/vectordbs/elasticsearch.html -->
|
|
|
|
|
|
<!--
|
|
|
|
|
|
https://mvnrepository.com/artifact/org.springframework.ai/spring-ai-starter-vector-store-elasticsearch -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.ai</groupId>
|
|
|
|
|
|
<artifactId>spring-ai-starter-vector-store-elasticsearch</artifactId>
|
|
|
|
|
|
<version>${spring-ai.version}</version>
|
|
|
|
|
|
</dependency>
|
2025-07-22 06:23:36 +08:00
|
|
|
|
|
2025-02-21 11:06:06 +08:00
|
|
|
|
<!-- mcp -->
|
2025-06-10 10:36:49 +08:00
|
|
|
|
<!-- https://modelcontextprotocol.io/sdk/java/mcp-overview -->
|
|
|
|
|
|
<!-- https://docs.spring.io/spring-ai/reference/api/mcp/mcp-client-boot-starter-docs.html -->
|
2025-04-23 10:09:30 +08:00
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.springframework.ai/spring-ai-starter-mcp-client -->
|
2025-07-15 18:58:22 +08:00
|
|
|
|
<!-- <dependency>
|
2025-02-21 11:06:06 +08:00
|
|
|
|
<groupId>org.springframework.ai</groupId>
|
2025-04-23 10:09:30 +08:00
|
|
|
|
<artifactId>spring-ai-starter-mcp-client</artifactId>
|
2025-05-23 09:06:25 +08:00
|
|
|
|
<version>${spring-ai.version}</version>
|
2025-07-15 18:58:22 +08:00
|
|
|
|
</dependency> -->
|
2025-08-26 13:10:34 +08:00
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.springframework.ai/spring-ai-starter-mcp-server -->
|
|
|
|
|
|
<!-- <dependency>
|
|
|
|
|
|
<groupId>org.springframework.ai</groupId>
|
|
|
|
|
|
<artifactId>spring-ai-starter-mcp-server</artifactId>
|
|
|
|
|
|
<version>${spring-ai.version}</version>
|
|
|
|
|
|
</dependency> -->
|
2025-06-10 10:36:49 +08:00
|
|
|
|
<!-- 生产环境,spring ai 官方推荐使用 webflux 版本 client:
|
2025-06-20 10:01:01 +08:00
|
|
|
|
For production deployment, we recommend using the WebFlux-based SSE connection with the
|
|
|
|
|
|
spring-ai-starter-mcp-client-webflux-->
|
|
|
|
|
|
<!--
|
|
|
|
|
|
https://mvnrepository.com/artifact/org.springframework.ai/spring-ai-starter-mcp-client-webflux -->
|
2025-10-15 10:28:28 +08:00
|
|
|
|
<!-- <dependency>
|
2025-06-10 10:36:49 +08:00
|
|
|
|
<groupId>org.springframework.ai</groupId>
|
|
|
|
|
|
<artifactId>spring-ai-starter-mcp-client-webflux</artifactId>
|
|
|
|
|
|
<version>${spring-ai.version}</version>
|
2025-10-15 10:28:28 +08:00
|
|
|
|
</dependency> -->
|
2025-04-23 10:09:30 +08:00
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.springframework.ai/spring-ai-starter-mcp-server -->
|
2025-10-15 10:28:28 +08:00
|
|
|
|
<!-- <dependency>
|
2025-02-21 11:06:06 +08:00
|
|
|
|
<groupId>org.springframework.ai</groupId>
|
2025-08-26 13:10:34 +08:00
|
|
|
|
<artifactId>spring-ai-starter-mcp-server-webflux</artifactId>
|
2025-05-23 09:06:25 +08:00
|
|
|
|
<version>${spring-ai.version}</version>
|
2025-10-15 10:28:28 +08:00
|
|
|
|
</dependency> -->
|
2025-02-21 11:06:06 +08:00
|
|
|
|
|
2025-09-30 12:12:21 +08:00
|
|
|
|
<!-- https://modelcontextprotocol.io/sdk/java/mcp-overview -->
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/io.modelcontextprotocol.sdk/mcp -->
|
2025-10-15 10:28:28 +08:00
|
|
|
|
<!-- <dependency>
|
2025-09-30 12:12:21 +08:00
|
|
|
|
<groupId>io.modelcontextprotocol.sdk</groupId>
|
|
|
|
|
|
<artifactId>mcp</artifactId>
|
|
|
|
|
|
<version>${mcp.version}</version>
|
2025-10-15 10:28:28 +08:00
|
|
|
|
</dependency> -->
|
2025-09-30 12:12:21 +08:00
|
|
|
|
<!-- https://mvnrepository.com/artifact/io.modelcontextprotocol.sdk/mcp-spring-webflux -->
|
2025-10-15 10:28:28 +08:00
|
|
|
|
<!-- <dependency>
|
2025-09-30 12:12:21 +08:00
|
|
|
|
<groupId>io.modelcontextprotocol.sdk</groupId>
|
|
|
|
|
|
<artifactId>mcp-spring-webflux</artifactId>
|
|
|
|
|
|
<version>${mcp.version}</version>
|
2025-10-15 10:28:28 +08:00
|
|
|
|
</dependency> -->
|
2025-09-30 12:12:21 +08:00
|
|
|
|
<!-- https://mvnrepository.com/artifact/io.modelcontextprotocol.sdk/mcp-spring-webmvc -->
|
|
|
|
|
|
<!-- <dependency>
|
|
|
|
|
|
<groupId>io.modelcontextprotocol.sdk</groupId>
|
|
|
|
|
|
<artifactId>mcp-spring-webmvc</artifactId>
|
|
|
|
|
|
<version>${mcp.version}</version>
|
|
|
|
|
|
</dependency> -->
|
|
|
|
|
|
|
2024-03-29 16:26:33 +08:00
|
|
|
|
<!-- ///////////////////////////////////////////////////////////////////////////// -->
|
2024-04-07 10:54:47 +08:00
|
|
|
|
|
2024-03-29 16:26:33 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.bytedesk</groupId>
|
2024-05-21 09:02:02 +08:00
|
|
|
|
<artifactId>bytedesk-module-core</artifactId>
|
2024-07-09 12:38:12 +08:00
|
|
|
|
<version>${revision}</version>
|
2024-03-29 16:26:33 +08:00
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
2024-08-06 08:18:01 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.bytedesk</groupId>
|
|
|
|
|
|
<artifactId>bytedesk-module-kbase</artifactId>
|
|
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
2024-06-12 16:32:58 +08:00
|
|
|
|
<!-- ///////////////////////////////////////////////////////////////////////////// -->
|
|
|
|
|
|
|
2025-07-11 11:14:04 +08:00
|
|
|
|
<!-- https://github.com/alibaba/spring-ai-alibaba -->
|
2025-07-18 16:47:41 +08:00
|
|
|
|
<!--
|
|
|
|
|
|
https://mvnrepository.com/artifact/com.alibaba.cloud.ai/spring-ai-alibaba-starter-dashscope -->
|
2025-07-14 17:17:58 +08:00
|
|
|
|
<dependency>
|
2025-07-11 11:14:04 +08:00
|
|
|
|
<groupId>com.alibaba.cloud.ai</groupId>
|
|
|
|
|
|
<artifactId>spring-ai-alibaba-starter-dashscope</artifactId>
|
|
|
|
|
|
<version>${spring-ai-alibaba.version}</version>
|
2025-07-14 17:17:58 +08:00
|
|
|
|
</dependency>
|
2025-08-28 10:27:31 +08:00
|
|
|
|
<!-- https://mvnrepository.com/artifact/com.alibaba.cloud.ai/spring-ai-alibaba-graph-core -->
|
2025-07-14 17:17:58 +08:00
|
|
|
|
<dependency>
|
2025-02-10 14:17:28 +08:00
|
|
|
|
<groupId>com.alibaba.cloud.ai</groupId>
|
2025-07-11 12:45:28 +08:00
|
|
|
|
<artifactId>spring-ai-alibaba-graph-core</artifactId>
|
2025-02-17 12:28:52 +08:00
|
|
|
|
<version>${spring-ai-alibaba.version}</version>
|
2025-07-18 16:47:41 +08:00
|
|
|
|
</dependency>
|
2025-07-22 08:06:59 +08:00
|
|
|
|
<!-- <dependency>
|
|
|
|
|
|
<groupId>com.alibaba.cloud.ai</groupId>
|
|
|
|
|
|
<artifactId>spring-ai-alibaba-starter-graph-observation</artifactId>
|
|
|
|
|
|
<version>${spring-ai-alibaba.version}</version>
|
|
|
|
|
|
</dependency> -->
|
2025-02-10 14:17:28 +08:00
|
|
|
|
|
2024-10-07 07:29:38 +08:00
|
|
|
|
<!-- https://ollama4j.github.io/ollama4j/intro -->
|
2025-07-11 07:37:57 +08:00
|
|
|
|
<!-- https://mvnrepository.com/artifact/io.github.ollama4j/ollama4j -->
|
2024-11-18 13:17:15 +08:00
|
|
|
|
<dependency>
|
2024-10-07 07:29:38 +08:00
|
|
|
|
<groupId>io.github.ollama4j</groupId>
|
|
|
|
|
|
<artifactId>ollama4j</artifactId>
|
2024-11-18 13:17:15 +08:00
|
|
|
|
<version>${ollama4j.version}</version>
|
|
|
|
|
|
</dependency>
|
2024-10-07 07:29:38 +08:00
|
|
|
|
|
2025-04-21 18:26:49 +08:00
|
|
|
|
<!-- 抓取网页时使用 -->
|
2025-02-25 15:05:09 +08:00
|
|
|
|
<!-- https://jsoup.org/download -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.jsoup</groupId>
|
|
|
|
|
|
<artifactId>jsoup</artifactId>
|
|
|
|
|
|
<version>${jsonp.version}</version>
|
|
|
|
|
|
</dependency>
|
2025-08-25 14:16:11 +08:00
|
|
|
|
|
2024-06-12 16:32:58 +08:00
|
|
|
|
<!-- ///////////////////////////////////////////////////////////////////////////// -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
2025-04-23 10:09:30 +08:00
|
|
|
|
<!-- 添加Spring AI Chat Observation依赖 -->
|
2025-07-18 16:47:41 +08:00
|
|
|
|
<!--
|
|
|
|
|
|
https://mvnrepository.com/artifact/org.springframework.ai/spring-ai-autoconfigure-model-chat-observation -->
|
2025-07-15 16:05:10 +08:00
|
|
|
|
<!-- <dependency>
|
2025-04-23 10:09:30 +08:00
|
|
|
|
<groupId>org.springframework.ai</groupId>
|
|
|
|
|
|
<artifactId>spring-ai-autoconfigure-model-chat-observation</artifactId>
|
|
|
|
|
|
<version>${spring-ai.version}</version>
|
2025-07-15 16:05:10 +08:00
|
|
|
|
</dependency> -->
|
2025-04-23 10:09:30 +08:00
|
|
|
|
|
|
|
|
|
|
<!-- 添加Micrometer依赖 -->
|
2025-07-15 13:13:41 +08:00
|
|
|
|
<!-- <dependency>
|
2025-04-23 10:09:30 +08:00
|
|
|
|
<groupId>io.micrometer</groupId>
|
|
|
|
|
|
<artifactId>micrometer-observation</artifactId>
|
2025-07-15 13:13:41 +08:00
|
|
|
|
</dependency> -->
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Observability -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>io.micrometer</groupId>
|
|
|
|
|
|
<artifactId>micrometer-tracing-bridge-brave</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>io.zipkin.reporter2</groupId>
|
|
|
|
|
|
<artifactId>zipkin-reporter-brave</artifactId>
|
2025-04-23 10:09:30 +08:00
|
|
|
|
</dependency>
|
2025-04-23 10:39:55 +08:00
|
|
|
|
|
2025-09-17 15:44:47 +08:00
|
|
|
|
<!-- 分词、词频分析 -->
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.ansj/ansj_seg -->
|
|
|
|
|
|
<!-- https://github.com/NLPchina/ansj_seg -->
|
|
|
|
|
|
<!-- <dependency>
|
|
|
|
|
|
<groupId>org.ansj</groupId>
|
|
|
|
|
|
<artifactId>ansj_seg</artifactId>
|
|
|
|
|
|
<version>5.1.6</version>
|
|
|
|
|
|
</dependency> -->
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 中文分词 -->
|
|
|
|
|
|
<!-- https://github.com/houbb/segment -->
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/com.github.houbb/segment -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.github.houbb</groupId>
|
|
|
|
|
|
<artifactId>segment</artifactId>
|
|
|
|
|
|
<version>0.3.1</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
2025-09-23 12:15:40 +08:00
|
|
|
|
<!-- OCR 图像文字识别 -->
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/net.sourceforge.tess4j/tess4j -->
|
|
|
|
|
|
<!-- <dependency>
|
|
|
|
|
|
<groupId>net.sourceforge.tess4j</groupId>
|
|
|
|
|
|
<artifactId>tess4j</artifactId>
|
|
|
|
|
|
<version>5.16.0</version>
|
|
|
|
|
|
</dependency> -->
|
|
|
|
|
|
|
2024-03-29 16:26:33 +08:00
|
|
|
|
</dependencies>
|
2024-08-06 08:18:01 +08:00
|
|
|
|
|
2025-04-17 14:01:02 +08:00
|
|
|
|
<!-- https://docs.spring.io/spring-ai/reference/getting-started.html -->
|
2024-06-12 16:32:58 +08:00
|
|
|
|
<dependencyManagement>
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.ai</groupId>
|
|
|
|
|
|
<artifactId>spring-ai-bom</artifactId>
|
|
|
|
|
|
<version>${spring-ai.version}</version>
|
|
|
|
|
|
<type>pom</type>
|
|
|
|
|
|
<scope>import</scope>
|
|
|
|
|
|
</dependency>
|
2025-06-20 10:01:01 +08:00
|
|
|
|
<!-- https://github.com/alibaba/spring-ai-alibaba -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.alibaba.cloud.ai</groupId>
|
|
|
|
|
|
<artifactId>spring-ai-alibaba-bom</artifactId>
|
|
|
|
|
|
<version>${spring-ai-alibaba.version}</version>
|
|
|
|
|
|
<type>pom</type>
|
|
|
|
|
|
<scope>import</scope>
|
|
|
|
|
|
</dependency>
|
2025-09-30 12:12:21 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>io.modelcontextprotocol.sdk</groupId>
|
|
|
|
|
|
<artifactId>mcp-bom</artifactId>
|
|
|
|
|
|
<version>${mcp.version}</version>
|
|
|
|
|
|
<type>pom</type>
|
|
|
|
|
|
<scope>import</scope>
|
|
|
|
|
|
</dependency>
|
2024-06-12 16:32:58 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
</dependencyManagement>
|
2024-10-07 07:29:38 +08:00
|
|
|
|
|
2024-03-29 16:26:33 +08:00
|
|
|
|
<build>
|
|
|
|
|
|
<plugins>
|
|
|
|
|
|
<!-- <plugin>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
|
</plugin> -->
|
|
|
|
|
|
</plugins>
|
|
|
|
|
|
</build>
|
|
|
|
|
|
|
2025-10-15 10:04:04 +08:00
|
|
|
|
|
2024-03-29 16:26:33 +08:00
|
|
|
|
|
2024-04-07 10:54:47 +08:00
|
|
|
|
</project>
|