update readme.md to list correct deps in brave, client-starter and sampling.

This commit is contained in:
Mark Pollack
2025-03-25 15:20:09 -04:00
parent 614c61316b
commit b8fb18b5e7
5 changed files with 11 additions and 11 deletions

View File

@@ -114,6 +114,6 @@ This setup allows the AI model to:
The project uses:
- Spring Boot 3.3.6
- Spring AI 1.0.0-M4
- Spring AI MCP Spring 0.1.0
- OpenAI Spring Boot Starter
- Spring AI 1.0.0-SNAPSHOT
- spring-ai-starter-model-openai
- spring-ai-starter-mcp-client

View File

@@ -29,11 +29,11 @@ The project uses the following main dependencies:
<dependencies>
<dependency>
<groupId>org.springframework.ai</groupId>
<artifactId>spring-ai-mcp-client-spring-boot-starter</artifactId>
<artifactId>spring-ai-starter-mcp-client</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.ai</groupId>
<artifactId>spring-ai-anthropic-spring-boot-starter</artifactId>
<artifactId>spring-ai-starter-model-anthropic</artifactId>
</dependency>
</dependencies>
```

View File

@@ -29,11 +29,11 @@ The project uses the following main dependencies:
<dependencies>
<dependency>
<groupId>org.springframework.ai</groupId>
<artifactId>spring-ai-mcp-client-webflux-spring-boot-starter</artifactId>
<artifactId>spring-ai-starter-mcp-client-webflux</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.ai</groupId>
<artifactId>spring-ai-anthropic-spring-boot-starter</artifactId>
<artifactId>spring-ai-starter-model-anthropic</artifactId>
</dependency>
</dependencies>
```

View File

@@ -77,15 +77,15 @@ The project requires the following Spring AI dependencies:
<dependencies>
<dependency>
<groupId>org.springframework.ai</groupId>
<artifactId>spring-ai-mcp-client-spring-boot-starter</artifactId>
<artifactId>spring-ai-starter-mcp-client</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.ai</groupId>
<artifactId>spring-ai-openai-spring-boot-starter</artifactId>
<artifactId>spring-ai-starter-model-openai</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.ai</groupId>
<artifactId>spring-ai-anthropic-spring-boot-starter</artifactId>
<artifactId>spring-ai-starter-model-anthropic</artifactId>
</dependency>
</dependencies>
```

View File

@@ -39,7 +39,7 @@ The project requires the Spring AI MCP Server WebMVC Boot Starter:
```xml
<dependency>
<groupId>org.springframework.ai</groupId>
<artifactId>spring-ai-mcp-server-webmvc-spring-boot-starter</artifactId>
<artifactId>spring-ai-starter-mcp-server-webmvc</artifactId>
</dependency>
```