|
@@ -0,0 +1,32 @@
|
|
|
|
|
+<?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>
|
|
|
|
|
+
|
|
|
|
|
+ <groupId>space.anyi</groupId>
|
|
|
|
|
+ <artifactId>SpringAiAlibaba-learn</artifactId>
|
|
|
|
|
+ <version>1.0-SNAPSHOT</version>
|
|
|
|
|
+ <description>学习Spring AI Alibaba的项目</description>
|
|
|
|
|
+
|
|
|
|
|
+ <properties>
|
|
|
|
|
+ <maven.compiler.source>21</maven.compiler.source>
|
|
|
|
|
+ <maven.compiler.target>21</maven.compiler.target>
|
|
|
|
|
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
+ </properties>
|
|
|
|
|
+
|
|
|
|
|
+ <dependencies>
|
|
|
|
|
+ <!-- Source: https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
+ <version>3.5.10</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework.ai</groupId>
|
|
|
|
|
+ <artifactId>spring-ai-starter-model-openai</artifactId>
|
|
|
|
|
+ <version>1.1.2</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ </dependencies>
|
|
|
|
|
+
|
|
|
|
|
+</project>
|