fix(slack): make video attachments available to agents (#45512)

This commit is contained in:
Teknium 2026-06-13 03:33:27 -07:00 committed by GitHub
parent 197337cc47
commit 2a5dc0ef3d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 274 additions and 3 deletions

View file

@ -338,15 +338,16 @@ def iter_skills_files(
# ---------------------------------------------------------------------------
# Cache directory mounts (documents, images, audio, screenshots)
# Cache directory mounts (documents, images, audio, videos, screenshots)
# ---------------------------------------------------------------------------
# The four cache subdirectories that should be mirrored into remote backends.
# The cache subdirectories that should be mirrored into remote backends.
# Each tuple is (new_subpath, old_name) matching hermes_constants.get_hermes_dir().
_CACHE_DIRS: list[tuple[str, str]] = [
("cache/documents", "document_cache"),
("cache/images", "image_cache"),
("cache/audio", "audio_cache"),
("cache/videos", "video_cache"),
("cache/screenshots", "browser_screenshots"),
]