mirror of
https://github.com/awslabs/amazon-bedrock-agentcore-samples.git
synced 2025-09-08 20:50:46 +00:00
Resolved conflicts in: - deployment/invoke_agent_runtime.py - sre_agent/multi_agent_langgraph.py - sre_agent/supervisor.py Integrated memory system changes with latest main branch updates
110 lines
1.3 KiB
Plaintext
110 lines
1.3 KiB
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
*.whl
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
|
|
# PyInstaller
|
|
*.manifest
|
|
*.spec
|
|
|
|
# Installer logs
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
|
|
# Unit test / coverage reports
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
.coverage
|
|
.coverage.*
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
*.cover
|
|
.hypothesis/
|
|
.pytest_cache/
|
|
|
|
# Virtual environments
|
|
.env
|
|
.venv
|
|
env/
|
|
venv/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Project specific
|
|
.access_token
|
|
.gateway_uri
|
|
.credentials_provider
|
|
.conversation_state.json
|
|
.langgraph_conversation_state.json
|
|
.multi_agent_conversation_state.json
|
|
.memory_id
|
|
*.log
|
|
logs/
|
|
reports/
|
|
|
|
# Generated OpenAPI specifications (generated from templates)
|
|
backend/openapi_specs/k8s_api.yaml
|
|
backend/openapi_specs/logs_api.yaml
|
|
backend/openapi_specs/metrics_api.yaml
|
|
backend/openapi_specs/runbooks_api.yaml
|
|
|
|
# Docker
|
|
.dockerignore
|
|
|
|
# Local config
|
|
config.yaml
|
|
!config.yaml.example
|
|
|
|
# Cognito setup artifacts
|
|
deployment/.cognito_config
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
|
|
# Scratchpad and notes
|
|
.scratchpad/
|
|
docs/agentic-ai-architecture-assessment.md
|
|
|
|
# Deployment artifacts
|
|
deployment/.sre_agent_uri
|
|
deployment/.env
|
|
deployment/.agent_arn |