| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>org.jeecgframework.boot3</groupId>
- <artifactId>jeecg-boot-module</artifactId>
- <version>3.9.1</version>
- </parent>
- <artifactId>jeecg-boot-module-airag</artifactId>
- <repositories>
- <repository>
- <id>aliyun</id>
- <name>aliyun Repository</name>
- <url>https://maven.aliyun.com/repository/public</url>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- </repository>
- <repository>
- <id>jeecg</id>
- <name>jeecg Repository</name>
- <url>https://maven.jeecg.org/nexus/content/repositories/jeecg</url>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- </repository>
- </repositories>
- <properties>
- <kotlin.version>2.2.0</kotlin.version>
- <liteflow.version>2.15.0</liteflow.version>
- <apache-tika.version>3.2.3</apache-tika.version>
- </properties>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>dev.langchain4j</groupId>
- <artifactId>langchain4j-bom</artifactId>
- <version>1.9.1</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- <dependency>
- <groupId>dev.langchain4j</groupId>
- <artifactId>langchain4j-community-bom</artifactId>
- <version>1.9.1-beta17</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- </dependencies>
- </dependencyManagement>
- <dependencies>
- <!-- system单体 api-->
- <dependency>
- <groupId>org.jeecgframework.boot3</groupId>
- <artifactId>jeecg-system-local-api</artifactId>
- </dependency>
- <!-- 微服务starter和system微服务 api
- <dependency>
- <groupId>org.jeecgframework.boot3</groupId>
- <artifactId>jeecg-boot-starter-cloud</artifactId>
- </dependency>
- <dependency>
- <groupId>org.jeecgframework.boot3</groupId>
- <artifactId>jeecg-system-cloud-api</artifactId>
- </dependency>-->
- <!-- aiflow依赖 -->
- <dependency>
- <groupId>org.jeecgframework.boot3</groupId>
- <artifactId>jeecg-aiflow</artifactId>
- <version>3.9.1-beta1</version>
- <exclusions>
- <exclusion>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- </exclusion>
- <exclusion>
- <groupId>commons-beanutils</groupId>
- <artifactId>commons-beanutils</artifactId>
- </exclusion>
- <exclusion>
- <groupId>com.yomahub</groupId>
- <artifactId>liteflow-script-python</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <!-- begin 注意:这几个依赖体积较大,每个约50MB。若发布时需要使用,请将 <scope>provided</scope> 删除 -->
- <dependency>
- <groupId>org.jetbrains.kotlin</groupId>
- <artifactId>kotlin-scripting-jsr223</artifactId>
- <version>${kotlin.version}</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.yomahub</groupId>
- <artifactId>liteflow-script-graaljs</artifactId>
- <version>${liteflow.version}</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.yomahub</groupId>
- <artifactId>liteflow-script-groovy</artifactId>
- <version>${liteflow.version}</version>
- <scope>runtime</scope>
- </dependency>
- <!-- end 注意:这几个依赖体积较大,每个约50MB。若发布时需要使用,请将 <scope>provided</scope> 删除 -->
- <!-- aiflow 脚本依赖 -->
- <dependency>
- <groupId>com.yomahub</groupId>
- <artifactId>liteflow-script-python</artifactId>
- <version>${liteflow.version}</version>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>com.yomahub</groupId>
- <artifactId>liteflow-script-kotlin</artifactId>
- <version>${liteflow.version}</version>
- <exclusions>
- <exclusion>
- <groupId>org.jetbrains.kotlin</groupId>
- <artifactId>kotlin-scripting-jsr223</artifactId>
- </exclusion>
- </exclusions>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>com.yomahub</groupId>
- <artifactId>liteflow-script-aviator</artifactId>
- <version>${liteflow.version}</version>
- <scope>runtime</scope>
- <exclusions>
- <exclusion>
- <artifactId>aviator</artifactId>
- <groupId>com.googlecode.aviator</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <!-- aiflow 脚本依赖 -->
- <!-- langChain4j model support -->
- <dependency>
- <groupId>dev.langchain4j</groupId>
- <artifactId>langchain4j-open-ai</artifactId>
- </dependency>
- <!-- langChain4j mcp support -->
- <dependency>
- <groupId>dev.langchain4j</groupId>
- <artifactId>langchain4j-mcp</artifactId>
- </dependency>
- <dependency>
- <groupId>dev.langchain4j</groupId>
- <artifactId>langchain4j-ollama</artifactId>
- </dependency>
- <dependency>
- <groupId>dev.langchain4j</groupId>
- <artifactId>langchain4j-community-zhipu-ai</artifactId>
- <exclusions>
- <exclusion>
- <artifactId>checker-qual</artifactId>
- <groupId>org.checkerframework</groupId>
- </exclusion>
- <exclusion>
- <artifactId>guava</artifactId>
- <groupId>com.google.guava</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>dev.langchain4j</groupId>
- <artifactId>langchain4j-community-qianfan</artifactId>
- </dependency>
- <dependency>
- <groupId>dev.langchain4j</groupId>
- <artifactId>langchain4j-community-dashscope</artifactId>
- <exclusions>
- <exclusion>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-simple</artifactId>
- </exclusion>
- <exclusion>
- <artifactId>okio</artifactId>
- <groupId>com.squareup.okio</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>dev.langchain4j</groupId>
- <artifactId>langchain4j-anthropic</artifactId>
- </dependency>
- <!-- langChain4j vextor support -->
- <dependency>
- <groupId>org.jeecgframework</groupId>
- <artifactId>langchain4j-pgvector</artifactId>
- <version>1.3.0-beta9</version>
- </dependency>
- <!-- langChain4j Document Parser 适用于excel、ppt、word -->
- <dependency>
- <groupId>dev.langchain4j</groupId>
- <artifactId>langchain4j-document-parser-apache-poi</artifactId>
- </dependency>
- <dependency>
- <groupId>org.apache.tika</groupId>
- <artifactId>tika-core</artifactId>
- <version>${apache-tika.version}</version>
- <exclusions>
- <exclusion>
- <artifactId>commons-io</artifactId>
- <groupId>commons-io</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.apache.tika</groupId>
- <artifactId>tika-parser-html-module</artifactId>
- <version>${apache-tika.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.tika</groupId>
- <artifactId>tika-parser-pdf-module</artifactId>
- <version>${apache-tika.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.tika</groupId>
- <artifactId>tika-parser-text-module</artifactId>
- <version>${apache-tika.version}</version>
- </dependency>
- <!-- word模版引擎 -->
- <dependency>
- <groupId>com.deepoove</groupId>
- <artifactId>poi-tl</artifactId>
- <version>1.12.2</version>
- </dependency>
- </dependencies>
- </project>
|