mirror of
https://github.com/awslabs/amazon-bedrock-agentcore-samples.git
synced 2025-09-08 20:50:46 +00:00
* feat(sre-agent): add OpenTelemetry observability and tracing - Add OpenTelemetry tracing to supervisor and memory tools - Configure OTEL collector with Jaeger backend via docker-compose - Add trace context propagation between supervisor and workers - Include run-with-tracing.sh helper script for easy tracing setup - Update blog post with comprehensive observability section - Add presentation slides for SRE agent capabilities * docs(sre-agent): replace mermaid diagram with architecture image - Replace inline mermaid diagram with external architecture PNG image - Add detailed component descriptions for AgentCore integration - Image shows complete flow from customer to AgentCore services * feat(sre-agent): add assets table with demo video and AI podcast links - Add assets section with clickable links to demo video and AI-generated podcast - Include descriptions for each asset to help users understand the content - Position table prominently after the use case details for visibility * docs(sre-agent): update blog post with latest code snippets and improvements - Update Dockerfile snippet to include OpenTelemetry instrumentation - Update invoke_agent_runtime.py snippet with timeout config and memory personalization - Remove verbose real-time agent execution traces section while keeping key insights - Simplify cleanup section to show only essential command - Ensure all code snippets match latest implementation * style(sre-agent): apply ruff formatting to Python files - Format code with ruff formatter for consistent style - Fix whitespace and indentation issues - Apply standard Python formatting conventions - Ensure code adheres to project style guidelines * chore(sre-agent): remove slide files from docs - Remove presentation slide markdown files - Clean up docs directory structure
85 lines
1.8 KiB
TOML
85 lines
1.8 KiB
TOML
[build-system]
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "sre-agent"
|
|
version = "1.0.0"
|
|
description = "Multi-agent SRE assistant for infrastructure troubleshooting"
|
|
authors = [{name = "SRE Team", email = "sre@company.com"}]
|
|
license = {text = "MIT"}
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
|
|
dependencies = [
|
|
"langgraph>=0.5.4",
|
|
"langchain-core>=0.3.72",
|
|
"langchain-aws>=0.2.29",
|
|
"langchain-anthropic>=0.3.17",
|
|
"langchain-mcp-adapters>=0.1.9",
|
|
"langchain[aws]",
|
|
"langchain-community",
|
|
"langsmith[otel]",
|
|
"pydantic>=2.0.0",
|
|
"uvloop>=0.20.0",
|
|
"fastapi>=0.104.0",
|
|
"uvicorn>=0.24.0",
|
|
"pyyaml>=6.0.1",
|
|
"httpx>=0.25.0",
|
|
"click>=8.1.0",
|
|
"mcp>=1.10.1",
|
|
"requests>=2.28.0",
|
|
"python-dotenv>=1.0.0",
|
|
"anthropic>=0.57.1",
|
|
"python-multipart>=0.0.6",
|
|
"boto3==1.39.7",
|
|
"botocore==1.39.7",
|
|
"awscli==1.41.7",
|
|
"bedrock-agentcore>=0.1.1",
|
|
"opentelemetry-instrumentation-langchain",
|
|
"aws-opentelemetry-distro~=0.10.1",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=7.4.0",
|
|
"pytest-asyncio>=0.21.0",
|
|
"black>=23.0.0",
|
|
"mypy>=1.5.0",
|
|
"flake8>=6.0.0",
|
|
"bandit>=1.7.0",
|
|
"pre-commit>=3.0.0",
|
|
"ruff>=0.1.0"
|
|
]
|
|
|
|
|
|
[project.scripts]
|
|
sre-agent = "sre_agent.cli:main"
|
|
sre-gateway-setup = "gateway.main:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["sre_agent*", "gateway*", "backend*"]
|
|
|
|
[tool.black]
|
|
line-length = 88
|
|
target-version = ['py312']
|
|
|
|
[tool.mypy]
|
|
python_version = "3.12"
|
|
warn_return_any = true
|
|
warn_unused_configs = true
|
|
|
|
[tool.ruff]
|
|
line-length = 88
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "I", "N", "W"]
|
|
ignore = ["E501"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
python_files = "test_*.py"
|
|
python_classes = "Test*"
|
|
python_functions = "test_*"
|