add jdbc starter to pgvector starter

This commit is contained in:
Mark Pollack
2024-02-22 15:48:58 -05:00
parent a166a3a3d9
commit bc5c4e2c4f
2 changed files with 6 additions and 11 deletions

View File

@@ -8,14 +8,10 @@ To provide an overview, the following key functionalities are available:
* Portable API across AI providers for Chat and for Embedding models. Both synchronous and stream API options are supported. Dropping down to access model specific features is also supported.
* Portable API across Vector Store providers, including a novel SQL-like metadata filter API that is also portable.
* Function calling
* Spring Boot Auto Configuration and Starters for AI Models and Vector Stores.
* OpenAI Function calling
* ETL framework for Data Engineering
== API Docs
You can find the Javadoc https://docs.spring.io/spring-ai/docs/current-SNAPSHOT/api[here].
== Feedback and Contributions
The project's https://github.com/spring-projects/spring-ai/discussions[GitHub discussions] is a great place to send feedback.

View File

@@ -32,11 +32,9 @@
<version>${parent.version}</version>
</dependency>
<dependency>
<groupId>com.pgvector</groupId>
<artifactId>pgvector</artifactId>
<version>${pgvector.version}</version>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
<dependency>
@@ -46,8 +44,9 @@
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<groupId>com.pgvector</groupId>
<artifactId>pgvector</artifactId>
<version>${pgvector.version}</version>
</dependency>
<!-- TESTING -->