mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-04-30 23:02:50 +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
17 lines
314 B
Python
17 lines
314 B
Python
"""File resolution logic."""
|
|
|
|
from crewai_files.resolution.resolver import FileResolver
|
|
from crewai_files.resolution.utils import (
|
|
is_file_source,
|
|
normalize_input_files,
|
|
wrap_file_source,
|
|
)
|
|
|
|
|
|
__all__ = [
|
|
"FileResolver",
|
|
"is_file_source",
|
|
"normalize_input_files",
|
|
"wrap_file_source",
|
|
]
|