Calling AgentCore

Simple Demo with AgentCore

1. Send the first question

Use the command:

agentcore invoke "{'prompt': 'Tell me about roaming activations'}"

test1

The Agent will respond based on the data you deployed (database + logic in your code).

2. Test memory between invocations (session)

After the first question, send another related one — for example:

agentcore invoke "{'prompt': 'Activate it for Vietnam'}"

test2

Then ask:

agentcore invoke "{'prompt': 'which country was i referring to'}"

test3

If the Agent responds correctly and remembers the previous information → this confirms the Memory is working and AgentCore is maintaining context across invocations.

AgentCore behaves as expected in this demo.