File tree Expand file tree Collapse file tree 4 files changed +13
-3
lines changed
src/main/java/com/javaaidev/text2sql/metadata Expand file tree Collapse file tree 4 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 66 <parent >
77 <groupId >org.springframework.boot</groupId >
88 <artifactId >spring-boot-starter-parent</artifactId >
9- <version >3.4.4 </version >
9+ <version >3.4.5 </version >
1010 <relativePath />
1111 </parent >
1212
1818 <properties >
1919 <java .version>21</java .version>
2020 <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
21- <spring-ai .version>1.0.0-M6 </spring-ai .version>
21+ <spring-ai .version>1.0.0-M7 </spring-ai .version>
2222 <chat-agent-ui .version>0.11.0</chat-agent-ui .version>
2323 <llm-agent-spec .version>0.1.2</llm-agent-spec .version>
2424 </properties >
5858 </dependency >
5959 <dependency >
6060 <groupId >org.springframework.ai</groupId >
61- <artifactId >spring-ai-openai-spring-boot-starter </artifactId >
61+ <artifactId >spring-ai-starter-model-openai </artifactId >
6262 </dependency >
6363 <dependency >
6464 <groupId >org.springdoc</groupId >
Original file line number Diff line number Diff line change 11package com .javaaidev .text2sql .metadata ;
22
3+ import com .fasterxml .jackson .annotation .JsonInclude ;
4+ import com .fasterxml .jackson .annotation .JsonInclude .Include ;
5+
6+ @ JsonInclude (Include .NON_ABSENT )
37public record ColumnInfo (
48 String name ,
59 String dataType ,
Original file line number Diff line number Diff line change 11package com .javaaidev .text2sql .metadata ;
22
3+ import com .fasterxml .jackson .annotation .JsonInclude ;
4+ import com .fasterxml .jackson .annotation .JsonInclude .Include ;
35import java .util .List ;
46
7+ @ JsonInclude (Include .NON_ABSENT )
58public record DatabaseMetadata (List <TableInfo > tables ) {
69
710}
Original file line number Diff line number Diff line change 11package com .javaaidev .text2sql .metadata ;
22
3+ import com .fasterxml .jackson .annotation .JsonInclude ;
4+ import com .fasterxml .jackson .annotation .JsonInclude .Include ;
35import java .util .List ;
46
7+ @ JsonInclude (Include .NON_ABSENT )
58public record TableInfo (
69 String name ,
710 String description ,
You can’t perform that action at this time.
0 commit comments