mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-05-04 16:52:37 +00:00
- add input_files parameter to Crew.kickoff(), Flow.kickoff(), Task, and Agent.kickoff() - add provider-specific file uploaders for OpenAI, Anthropic, Gemini, and Bedrock - add file type detection, constraint validation, and automatic format conversion - add URL file source support for multimodal content - add streaming uploads for large files - add prompt caching support for Anthropic - add OpenAI Responses API support
15 lines
392 B
Python
15 lines
392 B
Python
"""Upload caching and cleanup."""
|
|
|
|
from crewai_files.cache.cleanup import cleanup_uploaded_files
|
|
from crewai_files.cache.metrics import FileOperationMetrics, measure_operation
|
|
from crewai_files.cache.upload_cache import UploadCache, get_upload_cache
|
|
|
|
|
|
__all__ = [
|
|
"FileOperationMetrics",
|
|
"UploadCache",
|
|
"cleanup_uploaded_files",
|
|
"get_upload_cache",
|
|
"measure_operation",
|
|
]
|