REF :
https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/runtime-get-started-toolkit.html
Starting Basic Agent core with tools
(base) amin $>mkdir agentcore-tools
(base) amin $>cd agentcore-tools
(base) amin $>python -m venv .venv
(base) amin $>source .venv/bin/activate
(.venv) (base) amin $>
# Create new project directory
mkdir my-new-project
cd my-new-project
# Create new virtual environment
python -m venv venv
# Activate the new venv # On macOS/Linux # or venv\Scripts\activate # On Windows
source venv/bin/activate
pip install -r requirements.txt
agentcore configure -e mytoolsagent.py
agentcore configure launch
agentcore invoke '{"prompt":"tell me a joke"}'