mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-08 15:48:29 +00:00
* clean up. fix type safety. address memory config docs * improve manager * Include fix for o1 models not supporting system messages * more broad with o1 * address fix: Typo in expected_output string #2045 * drop prints * drop prints * wip * wip * fix failing memory tests * Fix memory provider issue * clean up short term memory * revert ltm * drop
43 lines
1.2 KiB
Python
43 lines
1.2 KiB
Python
from typing import Dict, Optional, Union
|
|
|
|
from pydantic import BaseModel, Field
|
|
|
|
from crewai.tools.base_tool import BaseTool
|
|
from crewai.utilities import I18N
|
|
|
|
i18n = I18N()
|
|
|
|
|
|
class AddImageToolSchema(BaseModel):
|
|
image_url: str = Field(..., description="The URL or path of the image to add")
|
|
action: Optional[str] = Field(
|
|
default=None, description="Optional context or question about the image"
|
|
)
|
|
|
|
|
|
class AddImageTool(BaseTool):
|
|
"""Tool for adding images to the content"""
|
|
|
|
name: str = Field(default_factory=lambda: i18n.tools("add_image")["name"]) # type: ignore
|
|
description: str = Field(default_factory=lambda: i18n.tools("add_image")["description"]) # type: ignore
|
|
args_schema: type[BaseModel] = AddImageToolSchema
|
|
|
|
def _run(
|
|
self,
|
|
image_url: str,
|
|
action: Optional[str] = None,
|
|
**kwargs,
|
|
) -> dict:
|
|
action = action or i18n.tools("add_image")["default_action"] # type: ignore
|
|
content = [
|
|
{"type": "text", "text": action},
|
|
{
|
|
"type": "image_url",
|
|
"image_url": {
|
|
"url": image_url,
|
|
},
|
|
},
|
|
]
|
|
|
|
return {"role": "user", "content": content}
|