| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?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>api</groupId>
- <artifactId>ai</artifactId>
- <version>1.0.0</version>
- </parent>
- <artifactId>ai-service</artifactId>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <api.version>1.0.0</api.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>api</groupId>
- <artifactId>ai-entity</artifactId>
- <version>${api.version}</version>
- </dependency>
- <dependency>
- <groupId>api</groupId>
- <artifactId>ai-mapper</artifactId>
- <version>${api.version}</version>
- </dependency>
- <dependency>
- <groupId>api</groupId>
- <artifactId>ai-util</artifactId>
- <version>${api.version}</version>
- </dependency>
- <dependency>
- <groupId>cn.bigmodel.openapi</groupId>
- <artifactId>oapi-java-sdk</artifactId>
- <version>release-V4-2.0.2</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>dashscope-sdk-java</artifactId>
- <version>2.15.3</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>com.baidubce</groupId>
- <artifactId>qianfan</artifactId>
- <version>0.1.1</version>
- <scope>compile</scope>
- </dependency>
- </dependencies>
- </project>
|