Skip to content

Commit 809ae4a

Browse files
author
Yuriy
committed
chore(java-spring-ai-agents): pin AgentCore dependencies to 1.0.0-RC8 and remove legacy config
1 parent 08ecd08 commit 809ae4a

2 files changed

Lines changed: 4 additions & 11 deletions

File tree

apps/java-spring-ai-agents/aiagent/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,13 @@
5454
<dependency>
5555
<groupId>org.springaicommunity</groupId>
5656
<artifactId>spring-ai-agentcore-code-interpreter</artifactId>
57+
<version>1.0.0-RC8</version>
5758
</dependency>
5859
<!-- AgentCore Browser -->
5960
<dependency>
6061
<groupId>org.springaicommunity</groupId>
6162
<artifactId>spring-ai-agentcore-browser</artifactId>
63+
<version>1.0.0-RC8</version>
6264
</dependency>
6365
<!-- Bedrock Runtime SDK for web grounding -->
6466
<dependency>
@@ -78,11 +80,13 @@
7880
<dependency>
7981
<groupId>org.springaicommunity</groupId>
8082
<artifactId>spring-ai-agentcore-memory</artifactId>
83+
<version>1.0.0-RC8</version>
8184
</dependency>
8285
<!-- AgentCore dependencies -->
8386
<dependency>
8487
<groupId>org.springaicommunity</groupId>
8588
<artifactId>spring-ai-agentcore-runtime-starter</artifactId>
89+
<version>1.0.0-RC8</version>
8690
</dependency>
8791
<dependency>
8892
<groupId>org.springframework.boot</groupId>

apps/java-spring-ai-agents/aiagent/src/main/resources/application.properties

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,3 @@ spring.ai.bedrock.converse.chat.timeout=120s
99
spring.ai.bedrock.converse.chat.options.max-tokens=4096
1010
spring.ai.bedrock.converse.chat.options.model=global.anthropic.claude-sonnet-4-5-20250929-v1:0
1111
spring.ai.bedrock.converse.chat.options.temperature=0.7
12-
# Knowledge Base
13-
spring.ai.vectorstore.bedrock-knowledge-base.knowledge-base-id=${BEDROCK_KNOWLEDGE_BASE_ID:your-knowledge-base-id-here}
14-
# AgentCore memory
15-
agentcore.memory.memory-id=${AGENTCORE_MEMORY_ID:your-memory-id-here}
16-
agentcore.memory.long-term.auto-discovery=true
17-
# AgentCore Browser - tool descriptions
18-
agentcore.browser.browse-url-description=Browse a web page and extract its text content. Returns the page title and body text. Use this to read and extract data from websites. For interactive sites, combine with fillForm and clickElement to navigate, then call browseUrl again to read the results.
19-
agentcore.browser.screenshot-description=Take a screenshot of a web page for the user to see. Does NOT return page content to you. Use browseUrl to extract data first, then takeScreenshot for visual evidence.
20-
# MCP Client
21-
spring.ai.mcp.client.toolcallback.enabled=true
22-
spring.ai.mcp.client.initialized=false

0 commit comments

Comments
 (0)