Skip to content

Commit fdebcc9

Browse files
author
Abhimanyu Siwach
committed
fix lints
1 parent f7fc561 commit fdebcc9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ def my_local_agent(query):
3535
# Your carefully crafted agent logic
3636
return agent.process(query)
3737

38-
# Deploy to Bedrock AgentCore
38+
# Deploy to Bedrock AgentCore
3939
from bedrock_agentcore import BedrockAgentCoreApp
4040
app = BedrockAgentCoreApp()
4141

42-
@app.entrypoint
42+
@app.entrypoint
4343
def production_agent(request):
4444
return my_local_agent(request.get("prompt")) # Same logic, enterprise platform
4545

@@ -65,14 +65,14 @@ async def process_documents(files):
6565
# Long-running AI processing
6666
return results
6767

68-
@app.ping # Custom health status
68+
@app.ping # Custom health status
6969
def health_check():
7070
return "HEALTHY" if all_services_up() else "HEALTHY_BUSY"
7171
```
7272

7373
**Enterprise Platform Services**
7474
- 🧠 **Memory** - Persistent knowledge across sessions
75-
- 🔗 **Gateway** - Transform APIs into MCP tools
75+
- 🔗 **Gateway** - Transform APIs into MCP tools
7676
- 💻 **Code Interpreter** - Secure sandboxed execution
7777
- 🌐 **Browser** - Cloud-based web automation
7878
- 📊 **Observability** - OpenTelemetry tracing

0 commit comments

Comments
 (0)