gitextract_o7a7u4a9/ ├── .github/ │ └── workflows/ │ ├── continuous-integration.yml │ ├── lint_and_test.yml │ └── lint_and_test_pr.yml ├── .gitignore ├── .pre-commit-config.yaml ├── Dockerfile.chatroom ├── LICENSE ├── Makefile ├── README.md ├── actions/ │ ├── __init__.py │ ├── actions.py │ ├── handoff.py │ ├── handoff_config.yml │ ├── requirements-actions.txt │ ├── snow.py │ └── snow_credentials.yml ├── chatroom_handoff.html ├── config.yml ├── data/ │ ├── handoff.yml │ ├── nlu.yml │ ├── rules.yml │ └── stories.yml ├── domain.yml ├── endpoints.yml ├── format_results.py ├── pyproject.toml ├── requirements-dev.txt ├── requirements.txt └── tests/ └── test_conversations.yml