203 lines
		
	
	
		
			7.4 KiB
		
	
	
	
		
			XML
		
	
	
			
		
		
	
	
			203 lines
		
	
	
		
			7.4 KiB
		
	
	
	
		
			XML
		
	
	
<?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>cpte-boot-module</artifactId>
 | 
						||
        <version>3.8.3</version>
 | 
						||
    </parent>
 | 
						||
 | 
						||
    <artifactId>cpte-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>
 | 
						||
        <apache-tika.version>2.9.1</apache-tika.version>
 | 
						||
    </properties>
 | 
						||
 | 
						||
    <dependencyManagement>
 | 
						||
        <dependencies>
 | 
						||
            <dependency>
 | 
						||
                <groupId>dev.langchain4j</groupId>
 | 
						||
                <artifactId>langchain4j-bom</artifactId>
 | 
						||
                <version>1.3.0</version>
 | 
						||
                <type>pom</type>
 | 
						||
                <scope>import</scope>
 | 
						||
            </dependency>
 | 
						||
            <dependency>
 | 
						||
                <groupId>dev.langchain4j</groupId>
 | 
						||
                <artifactId>langchain4j-community-bom</artifactId>
 | 
						||
                <version>1.3.0-beta9</version>
 | 
						||
                <type>pom</type>
 | 
						||
                <scope>import</scope>
 | 
						||
            </dependency>
 | 
						||
        </dependencies>
 | 
						||
    </dependencyManagement>
 | 
						||
 | 
						||
    <dependencies>
 | 
						||
        <!-- system单体 api-->
 | 
						||
        <dependency>
 | 
						||
            <groupId>org.jeecgframework.boot3</groupId>
 | 
						||
            <artifactId>cpte-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.8.3.1</version>
 | 
						||
        </dependency>
 | 
						||
 | 
						||
        <!-- beigin 这两个依赖太多每个包50M左右,如果你发布需要使用,请把<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>
 | 
						||
        <!-- end 这两个依赖太多每个包50M左右,如果你发布需要使用,请把<scope>provided</scope>删掉 -->
 | 
						||
        <!-- aiflow 脚本依赖 -->
 | 
						||
        <dependency>
 | 
						||
            <groupId>com.yomahub</groupId>
 | 
						||
            <artifactId>liteflow-script-groovy</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>
 | 
						||
        <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>
 | 
						||
        <!-- langChain4j vextor support -->
 | 
						||
        <dependency>
 | 
						||
            <groupId>org.jeecgframework</groupId>
 | 
						||
            <artifactId>langchain4j-pgvector</artifactId>
 | 
						||
            <version>1.3.0-beta9</version>
 | 
						||
        </dependency>
 | 
						||
        <!-- langChain4j Document Parser -->
 | 
						||
        <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>
 | 
						||
 | 
						||
    </dependencies>
 | 
						||
 | 
						||
</project> |