|
6 | 6 | <parent> |
7 | 7 | <groupId>org.springframework.boot</groupId> |
8 | 8 | <artifactId>spring-boot-starter-parent</artifactId> |
9 | | - <version>3.3.0</version> |
| 9 | + <version>3.4.5</version> |
10 | 10 | <relativePath /> <!-- lookup parent from repository --> |
11 | 11 | </parent> |
12 | 12 | <groupId>com.example</groupId> |
13 | 13 | <artifactId>myspringai</artifactId> |
14 | | - <version>1.0.0-M6</version> |
| 14 | + <version>1.0.0</version> |
15 | 15 | <name>myspringai</name> |
16 | | - <description>Simple AI Application using OpenAPI Service</description> |
| 16 | + <description>Simple AI Application using OpenAPI or Ollama Service</description> |
17 | 17 | <properties> |
18 | 18 | <java.version>17</java.version> |
19 | | - <spring-ai.version>1.0.0-M6</spring-ai.version> |
| 19 | + <spring-ai.version>1.0.0</spring-ai.version> |
20 | 20 | </properties> |
21 | 21 | <dependencyManagement> |
22 | 22 | <dependencies> |
23 | 23 | <dependency> |
24 | 24 | <groupId>org.springframework.ai</groupId> |
25 | 25 | <artifactId>spring-ai-bom</artifactId> |
26 | | - <version>1.0.0-M6</version> |
| 26 | + <version>1.0.0</version> |
27 | 27 | <type>pom</type> |
28 | 28 | <scope>import</scope> |
29 | 29 | </dependency> |
30 | 30 | </dependencies> |
31 | 31 | </dependencyManagement> |
32 | 32 |
|
33 | 33 | <dependencies> |
34 | | - <!-- OPTIONALS: choose one permanently if you want delete the profiles ollama/openai |
35 | | - <dependency> |
36 | | - <groupId>org.springframework.ai</groupId> |
37 | | - <artifactId>spring-ai-ollama-spring-boot-starter</artifactId> |
38 | | - </dependency> |
39 | | -
|
40 | | - <dependency> |
41 | | - <groupId>org.springframework.ai</groupId> |
42 | | - <artifactId>spring-ai-openai-spring-boot-starter</artifactId> |
43 | | - </dependency> |
44 | | - --> |
45 | | - |
| 34 | + |
46 | 35 | <dependency> |
47 | 36 | <groupId>org.springframework.boot</groupId> |
48 | 37 | <artifactId>spring-boot-starter-web</artifactId> |
|
74 | 63 | <!-- ORACLE DB--> |
75 | 64 | <dependency> |
76 | 65 | <groupId>org.springframework.ai</groupId> |
77 | | - <artifactId>spring-ai-oracle-store-spring-boot-starter</artifactId> |
78 | | - <version>1.0.0-M6</version> |
| 66 | + <artifactId>spring-ai-advisors-vector-store</artifactId> |
79 | 67 | </dependency> |
80 | | - <!--<dependency> |
| 68 | + <dependency> |
81 | 69 | <groupId>org.springframework.ai</groupId> |
82 | | - <artifactId>spring-ai-oracle-store</artifactId> |
83 | | - <version>1.0.0-SNAPSHOT</version> |
84 | | - </dependency>--> |
| 70 | + <artifactId>spring-ai-starter-vector-store-oracle</artifactId> |
| 71 | + </dependency> |
85 | 72 | <dependency> |
86 | 73 | <groupId>com.oracle.database.jdbc</groupId> |
87 | 74 | <artifactId>ojdbc11</artifactId> |
|
112 | 99 | <dependencies> |
113 | 100 | <dependency> |
114 | 101 | <groupId>org.springframework.ai</groupId> |
115 | | - <artifactId>spring-ai-ollama-spring-boot-starter</artifactId> |
| 102 | + <artifactId>spring-ai-starter-model-ollama</artifactId> |
116 | 103 | </dependency> |
117 | 104 | </dependencies> |
118 | 105 | </profile> |
|
126 | 113 | <dependencies> |
127 | 114 | <dependency> |
128 | 115 | <groupId>org.springframework.ai</groupId> |
129 | | - <artifactId>spring-ai-openai-spring-boot-starter</artifactId> |
| 116 | + <artifactId>spring-ai-starter-model-openai</artifactId> |
130 | 117 | </dependency> |
131 | 118 | </dependencies> |
132 | 119 | </profile> |
|
0 commit comments