Testcontainers
Spring AI 为通过 Testcontainers 运行的模型服务或向量存储建立连接提供 Spring Boot 自动配置。要启用它,请将以下依赖项添加到项目的 Maven `pom.xml` 文件
<dependency>
<groupId>org.springframework.ai</groupId>
<artifactId>spring-ai-spring-boot-testcontainers</artifactId>
</dependency>
或 Gradle `build.gradle` 构建文件。
dependencies {
implementation 'org.springframework.ai:spring-ai-spring-boot-testcontainers'
}
请参阅 依赖项管理 部分,将 Spring AI BOM 添加到您的构建文件中。 |
服务连接
`spring-ai-spring-boot-testcontainers` 模块中提供了以下服务连接工厂
连接详情 |
匹配对象 |
|
类型为 `ChromaDBContainer` 的容器 |
|
类型为 `MilvusContainer` 的容器 |
|
类型为 `MongoDBAtlasLocalContainer` 的容器 |
|
类型为 `OllamaContainer` 的容器 |
|
类型为 `OpensearchContainer` 的容器 |
|
类型为 `QdrantContainer` 的容器 |
|
名为“typesense/typesense”的容器 |
|
类型为 `WeaviateContainer` 的容器 |