-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathapplication.properties
More file actions
19 lines (19 loc) · 1.18 KB
/
application.properties
File metadata and controls
19 lines (19 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
spring.application.name=agent
# Logging
logging.level.org.springframework.ai=DEBUG
logging.level.org.springaicommunity.agentcore=DEBUG
logging.level.com.example.agent=DEBUG
logging.pattern.console=%msg%n
# Amazon Bedrock Configuration
spring.ai.bedrock.converse.chat.timeout=120s
spring.ai.bedrock.converse.chat.options.max-tokens=4096
spring.ai.bedrock.converse.chat.options.model=global.anthropic.claude-sonnet-4-5-20250929-v1:0
spring.ai.bedrock.converse.chat.options.temperature=0.7
# AgentCore Browser - tool descriptions
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.
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.
# MCP Client
spring.ai.mcp.client.toolcallback.enabled=true
spring.ai.mcp.client.initialized=false
# Local thread variables propagation
spring.reactor.context-propagation=auto