File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -35,11 +35,11 @@ def my_local_agent(query):
35
35
# Your carefully crafted agent logic
36
36
return agent.process(query)
37
37
38
- # Deploy to Bedrock AgentCore
38
+ # Deploy to Bedrock AgentCore
39
39
from bedrock_agentcore import BedrockAgentCoreApp
40
40
app = BedrockAgentCoreApp()
41
41
42
- @app.entrypoint
42
+ @app.entrypoint
43
43
def production_agent (request ):
44
44
return my_local_agent(request.get(" prompt" )) # Same logic, enterprise platform
45
45
@@ -65,14 +65,14 @@ async def process_documents(files):
65
65
# Long-running AI processing
66
66
return results
67
67
68
- @app.ping # Custom health status
68
+ @app.ping # Custom health status
69
69
def health_check ():
70
70
return " HEALTHY" if all_services_up() else " HEALTHY_BUSY"
71
71
```
72
72
73
73
** Enterprise Platform Services**
74
74
- 🧠 ** Memory** - Persistent knowledge across sessions
75
- - 🔗 ** Gateway** - Transform APIs into MCP tools
75
+ - 🔗 ** Gateway** - Transform APIs into MCP tools
76
76
- 💻 ** Code Interpreter** - Secure sandboxed execution
77
77
- 🌐 ** Browser** - Cloud-based web automation
78
78
- 📊 ** Observability** - OpenTelemetry tracing
You can’t perform that action at this time.
0 commit comments