├── .gitignore ├── .python-version ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README-en.md ├── README.md ├── docs └── class_diagram.md ├── main.py ├── pyproject.toml ├── research ├── __init__.py ├── mermaid.md ├── perspective_explorer.py └── reporter.py ├── utils ├── __init__.py ├── bedrock.py ├── config.py ├── conversation.py ├── logger.py ├── tools.py └── utils.py └── uv.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/bedrock-tooluse-reporter/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/bedrock-tooluse-reporter/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/bedrock-tooluse-reporter/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/bedrock-tooluse-reporter/HEAD/LICENSE -------------------------------------------------------------------------------- /README-en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/bedrock-tooluse-reporter/HEAD/README-en.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/bedrock-tooluse-reporter/HEAD/README.md -------------------------------------------------------------------------------- /docs/class_diagram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/bedrock-tooluse-reporter/HEAD/docs/class_diagram.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/bedrock-tooluse-reporter/HEAD/main.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/bedrock-tooluse-reporter/HEAD/pyproject.toml -------------------------------------------------------------------------------- /research/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/bedrock-tooluse-reporter/HEAD/research/__init__.py -------------------------------------------------------------------------------- /research/mermaid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/bedrock-tooluse-reporter/HEAD/research/mermaid.md -------------------------------------------------------------------------------- /research/perspective_explorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/bedrock-tooluse-reporter/HEAD/research/perspective_explorer.py -------------------------------------------------------------------------------- /research/reporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/bedrock-tooluse-reporter/HEAD/research/reporter.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/bedrock-tooluse-reporter/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/bedrock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/bedrock-tooluse-reporter/HEAD/utils/bedrock.py -------------------------------------------------------------------------------- /utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/bedrock-tooluse-reporter/HEAD/utils/config.py -------------------------------------------------------------------------------- /utils/conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/bedrock-tooluse-reporter/HEAD/utils/conversation.py -------------------------------------------------------------------------------- /utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/bedrock-tooluse-reporter/HEAD/utils/logger.py -------------------------------------------------------------------------------- /utils/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/bedrock-tooluse-reporter/HEAD/utils/tools.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/bedrock-tooluse-reporter/HEAD/utils/utils.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/bedrock-tooluse-reporter/HEAD/uv.lock --------------------------------------------------------------------------------