mirror of
https://github.com/langgenius/dify.git
synced 2026-05-22 01:48:39 +08:00
Introduce a unified remote file fetcher that resolves first-party signed file URLs through database records and storage before falling back to the SSRF-protected HTTP client. Route backend remote-file call sites through the new boundary, remove obsolete file signature verification helpers, and document when to use remote_fetcher versus ssrf_proxy.
6 lines
132 B
Python
6 lines
132 B
Python
"""File retrieval helpers shared by backend file-oriented workflows."""
|
|
|
|
from . import remote_fetcher
|
|
|
|
__all__ = ["remote_fetcher"]
|