mirror of
https://github.com/awslabs/amazon-bedrock-agentcore-samples.git
synced 2025-09-08 20:50:46 +00:00
- Rename deployment-and-security.md to security.md and remove redundant deployment content - Enhance security.md with comprehensive production security guidelines including: - Authentication and authorization best practices - Encryption and data protection requirements - Operational security monitoring and logging - Input validation and prompt security measures - Infrastructure security recommendations - Compliance and governance frameworks - Update README.md to reference new security.md file - Eliminate redundancy between deployment-guide.md and deployment-and-security.md - Improve documentation organization with clear separation of concerns
35 lines
690 B
INI
35 lines
690 B
INI
[mypy]
|
|
python_version = 3.12
|
|
warn_return_any = True
|
|
warn_unused_configs = True
|
|
disallow_untyped_defs = False
|
|
ignore_missing_imports = True
|
|
check_untyped_defs = True
|
|
|
|
# Ignore missing imports for langchain ecosystem
|
|
[mypy-langchain.*]
|
|
ignore_missing_imports = True
|
|
|
|
[mypy-langchain_core.*]
|
|
ignore_missing_imports = True
|
|
|
|
[mypy-langchain_anthropic.*]
|
|
ignore_missing_imports = True
|
|
|
|
[mypy-langchain_aws.*]
|
|
ignore_missing_imports = True
|
|
|
|
[mypy-langchain_mcp_adapters.*]
|
|
ignore_missing_imports = True
|
|
|
|
[mypy-langgraph.*]
|
|
ignore_missing_imports = True
|
|
|
|
[mypy-fastapi.*]
|
|
ignore_missing_imports = True
|
|
|
|
[mypy-pydantic.*]
|
|
ignore_missing_imports = True
|
|
|
|
[mypy-uvicorn.*]
|
|
ignore_missing_imports = True |