Skip to content

Commit 125ae0a

Browse files
committed
test: complete Spring AI 1.0.1 testing and comparison
- Tested all 24 modules with Spring AI 1.0.1 - Results: 14 passed (58.3%), 7 failed (29.2%), 3 timeout (12.5%) - Found 1 regression: kotlin/kotlin-hello-world fails in 1.0.1 - All other test results consistent between 1.0.0 and 1.0.1 - Created comprehensive test documentation and comparison
1 parent bc6e8a2 commit 125ae0a

File tree

68 files changed

+3349
-49
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+3349
-49
lines changed
Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
<parent>
7+
<groupId>org.springframework.boot</groupId>
8+
<artifactId>spring-boot-starter-parent</artifactId>
9+
<version>3.4.5</version>
10+
<relativePath /> <!-- lookup parent from repository -->
11+
</parent>
12+
<groupId>com.example.spring.ai</groupId>
13+
<artifactId>chain-workflow</artifactId>
14+
<version>0.0.1-SNAPSHOT</version>
15+
<name>chain-workflow</name>
16+
<description>Demo project for Spring Boot</description>
17+
<properties>
18+
<java.version>17</java.version>
19+
<spring-ai.version>1.0.0</spring-ai.version>
20+
</properties>
21+
<dependencies>
22+
<dependency>
23+
<groupId>org.springframework.boot</groupId>
24+
<artifactId>spring-boot-starter-web</artifactId>
25+
</dependency>
26+
27+
28+
<!-- <dependency>
29+
<groupId>org.springframework.ai</groupId>
30+
<artifactId>spring-ai-starter-model-openai</artifactId>
31+
</dependency> -->
32+
33+
<dependency>
34+
<groupId>org.springframework.ai</groupId>
35+
<artifactId>spring-ai-starter-model-anthropic</artifactId>
36+
</dependency>
37+
38+
<!-- <dependency>
39+
<groupId>org.springframework.ai</groupId>
40+
<artifactId>spring-ai-starter-model-ollama</artifactId>
41+
</dependency> -->
42+
43+
<dependency>
44+
<groupId>org.springframework.boot</groupId>
45+
<artifactId>spring-boot-starter-test</artifactId>
46+
<scope>test</scope>
47+
</dependency>
48+
</dependencies>
49+
<dependencyManagement>
50+
<dependencies>
51+
<dependency>
52+
<groupId>org.springframework.ai</groupId>
53+
<artifactId>spring-ai-bom</artifactId>
54+
<version>1.0.0</version>
55+
<type>pom</type>
56+
<scope>import</scope>
57+
</dependency>
58+
</dependencies>
59+
</dependencyManagement>
60+
61+
<build>
62+
<plugins>
63+
<plugin>
64+
<groupId>org.springframework.boot</groupId>
65+
<artifactId>spring-boot-maven-plugin</artifactId>
66+
</plugin>
67+
</plugins>
68+
</build>
69+
70+
<repositories>
71+
<repository>
72+
<id>spring-milestones</id>
73+
<name>Spring Milestones</name>
74+
<url>https://repo.spring.io/milestone</url>
75+
<snapshots>
76+
<enabled>false</enabled>
77+
</snapshots>
78+
</repository>
79+
<repository>
80+
<id>central-portal-snapshots</id>
81+
<name>Central Portal Snapshots</name>
82+
<url>https://central.sonatype.com/repository/maven-snapshots/</url>
83+
<releases>
84+
<enabled>false</enabled>
85+
</releases>
86+
<snapshots>
87+
<enabled>true</enabled>
88+
</snapshots>
89+
</repository>
90+
</repositories>
91+
92+
</project>
Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
<parent>
7+
<groupId>org.springframework.boot</groupId>
8+
<artifactId>spring-boot-starter-parent</artifactId>
9+
<version>3.4.5</version>
10+
<relativePath /> <!-- lookup parent from repository -->
11+
</parent>
12+
<groupId>com.example.spring.ai</groupId>
13+
<artifactId>evaluator-optimizer</artifactId>
14+
<version>0.0.1-SNAPSHOT</version>
15+
<name>evaluator-optimizer</name>
16+
<description>Demo project for Spring Boot</description>
17+
<properties>
18+
<java.version>17</java.version>
19+
<spring-ai.version>1.0.0</spring-ai.version>
20+
</properties>
21+
<dependencies>
22+
<dependency>
23+
<groupId>org.springframework.boot</groupId>
24+
<artifactId>spring-boot-starter-web</artifactId>
25+
</dependency>
26+
27+
28+
<dependency>
29+
<groupId>org.springframework.ai</groupId>
30+
<artifactId>spring-ai-starter-model-openai</artifactId>
31+
</dependency>
32+
33+
<!-- <dependency>-->
34+
<!-- <groupId>org.springframework.ai</groupId>-->
35+
<!-- <artifactId>spring-ai-starter-model-anthropic</artifactId>-->
36+
<!-- </dependency>-->
37+
38+
39+
<!-- <dependency>
40+
<groupId>org.springframework.ai</groupId>
41+
<artifactId>spring-ai-starter-model-ollama</artifactId>
42+
</dependency> -->
43+
44+
<dependency>
45+
<groupId>org.springframework.boot</groupId>
46+
<artifactId>spring-boot-starter-test</artifactId>
47+
<scope>test</scope>
48+
</dependency>
49+
</dependencies>
50+
<dependencyManagement>
51+
<dependencies>
52+
<dependency>
53+
<groupId>org.springframework.ai</groupId>
54+
<artifactId>spring-ai-bom</artifactId>
55+
<version>1.0.0</version>
56+
<type>pom</type>
57+
<scope>import</scope>
58+
</dependency>
59+
</dependencies>
60+
</dependencyManagement>
61+
62+
<build>
63+
<plugins>
64+
<plugin>
65+
<groupId>org.springframework.boot</groupId>
66+
<artifactId>spring-boot-maven-plugin</artifactId>
67+
</plugin>
68+
</plugins>
69+
</build>
70+
71+
<repositories>
72+
<repository>
73+
<id>spring-milestones</id>
74+
<name>Spring Milestones</name>
75+
<url>https://repo.spring.io/milestone</url>
76+
<snapshots>
77+
<enabled>false</enabled>
78+
</snapshots>
79+
</repository>
80+
<repository>
81+
<id>central-portal-snapshots</id>
82+
<name>Central Portal Snapshots</name>
83+
<url>https://central.sonatype.com/repository/maven-snapshots/</url>
84+
<releases>
85+
<enabled>false</enabled>
86+
</releases>
87+
<snapshots>
88+
<enabled>true</enabled>
89+
</snapshots>
90+
</repository>
91+
</repositories>
92+
93+
</project>
Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
<parent>
7+
<groupId>org.springframework.boot</groupId>
8+
<artifactId>spring-boot-starter-parent</artifactId>
9+
<version>3.4.5</version>
10+
<relativePath /> <!-- lookup parent from repository -->
11+
</parent>
12+
<groupId>com.example.spring.ai</groupId>
13+
<artifactId>orchestrator-workers</artifactId>
14+
<version>0.0.1-SNAPSHOT</version>
15+
<name>orchestrator-workers</name>
16+
<description>Demo project for Spring Boot</description>
17+
<properties>
18+
<java.version>17</java.version>
19+
<spring-ai.version>1.0.0</spring-ai.version>
20+
</properties>
21+
<dependencies>
22+
<dependency>
23+
<groupId>org.springframework.boot</groupId>
24+
<artifactId>spring-boot-starter-web</artifactId>
25+
</dependency>
26+
27+
28+
<!-- <dependency>
29+
<groupId>org.springframework.ai</groupId>
30+
<artifactId>spring-ai-starter-model-openai</artifactId>
31+
</dependency> -->
32+
33+
<dependency>
34+
<groupId>org.springframework.ai</groupId>
35+
<artifactId>spring-ai-starter-model-anthropic</artifactId>
36+
</dependency>
37+
38+
<!-- <dependency>
39+
<groupId>org.springframework.ai</groupId>
40+
<artifactId>spring-ai-starter-model-ollama</artifactId>
41+
</dependency> -->
42+
43+
<dependency>
44+
<groupId>org.springframework.boot</groupId>
45+
<artifactId>spring-boot-starter-test</artifactId>
46+
<scope>test</scope>
47+
</dependency>
48+
</dependencies>
49+
<dependencyManagement>
50+
<dependencies>
51+
<dependency>
52+
<groupId>org.springframework.ai</groupId>
53+
<artifactId>spring-ai-bom</artifactId>
54+
<version>1.0.0</version>
55+
<type>pom</type>
56+
<scope>import</scope>
57+
</dependency>
58+
</dependencies>
59+
</dependencyManagement>
60+
61+
<build>
62+
<plugins>
63+
<plugin>
64+
<groupId>org.springframework.boot</groupId>
65+
<artifactId>spring-boot-maven-plugin</artifactId>
66+
</plugin>
67+
</plugins>
68+
</build>
69+
70+
<repositories>
71+
<repository>
72+
<id>spring-milestones</id>
73+
<name>Spring Milestones</name>
74+
<url>https://repo.spring.io/milestone</url>
75+
<snapshots>
76+
<enabled>false</enabled>
77+
</snapshots>
78+
</repository>
79+
<repository>
80+
<id>central-portal-snapshots</id>
81+
<name>Central Portal Snapshots</name>
82+
<url>https://central.sonatype.com/repository/maven-snapshots/</url>
83+
<releases>
84+
<enabled>false</enabled>
85+
</releases>
86+
<snapshots>
87+
<enabled>true</enabled>
88+
</snapshots>
89+
</repository>
90+
</repositories>
91+
92+
</project>
Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
<parent>
7+
<groupId>org.springframework.boot</groupId>
8+
<artifactId>spring-boot-starter-parent</artifactId>
9+
<version>3.4.5</version>
10+
<relativePath /> <!-- lookup parent from repository -->
11+
</parent>
12+
13+
<groupId>com.example.spring.ai</groupId>
14+
<artifactId>parallelization-workflow</artifactId>
15+
<version>0.0.1-SNAPSHOT</version>
16+
17+
<name>parallelization-workflow</name>
18+
<description>Agentic Parallelization Worflow Pattern with Spring AI</description>
19+
20+
<properties>
21+
<java.version>17</java.version>
22+
<spring-ai.version>1.0.0</spring-ai.version>
23+
</properties>
24+
25+
<dependencies>
26+
<dependency>
27+
<groupId>org.springframework.boot</groupId>
28+
<artifactId>spring-boot-starter-web</artifactId>
29+
</dependency>
30+
31+
32+
<!-- <dependency>
33+
<groupId>org.springframework.ai</groupId>
34+
<artifactId>spring-ai-starter-model-openai</artifactId>
35+
</dependency> -->
36+
37+
<dependency>
38+
<groupId>org.springframework.ai</groupId>
39+
<artifactId>spring-ai-starter-model-anthropic</artifactId>
40+
</dependency>
41+
42+
<!-- <dependency>
43+
<groupId>org.springframework.ai</groupId>
44+
<artifactId>spring-ai-starter-model-ollama</artifactId>
45+
</dependency> -->
46+
47+
<dependency>
48+
<groupId>org.springframework.boot</groupId>
49+
<artifactId>spring-boot-starter-test</artifactId>
50+
<scope>test</scope>
51+
</dependency>
52+
</dependencies>
53+
<dependencyManagement>
54+
<dependencies>
55+
<dependency>
56+
<groupId>org.springframework.ai</groupId>
57+
<artifactId>spring-ai-bom</artifactId>
58+
<version>1.0.0</version>
59+
<type>pom</type>
60+
<scope>import</scope>
61+
</dependency>
62+
</dependencies>
63+
</dependencyManagement>
64+
65+
<build>
66+
<plugins>
67+
<plugin>
68+
<groupId>org.springframework.boot</groupId>
69+
<artifactId>spring-boot-maven-plugin</artifactId>
70+
</plugin>
71+
</plugins>
72+
</build>
73+
74+
<repositories>
75+
<repository>
76+
<id>spring-milestones</id>
77+
<name>Spring Milestones</name>
78+
<url>https://repo.spring.io/milestone</url>
79+
<snapshots>
80+
<enabled>false</enabled>
81+
</snapshots>
82+
</repository>
83+
<repository>
84+
<id>central-portal-snapshots</id>
85+
<name>Central Portal Snapshots</name>
86+
<url>https://central.sonatype.com/repository/maven-snapshots/</url>
87+
<releases>
88+
<enabled>false</enabled>
89+
</releases>
90+
<snapshots>
91+
<enabled>true</enabled>
92+
</snapshots>
93+
</repository>
94+
</repositories>
95+
96+
</project>

0 commit comments

Comments
 (0)