mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-03 13:18:29 +00:00
* Introduce structure keys * Add agent key to tasks * Rebasing is hard * Rename task output telemetry * Feedback
37 lines
926 B
Python
37 lines
926 B
Python
import hashlib
|
|
from typing import Any, List, Optional
|
|
|
|
from crewai.agents.agent_builder.base_agent import BaseAgent
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class TestAgent(BaseAgent):
|
|
def execute_task(
|
|
self,
|
|
task: Any,
|
|
context: Optional[str] = None,
|
|
tools: Optional[List[Any]] = None,
|
|
) -> str:
|
|
return ""
|
|
|
|
def create_agent_executor(self, tools=None) -> None: ...
|
|
|
|
def _parse_tools(self, tools: List[Any]) -> List[Any]:
|
|
return []
|
|
|
|
def get_delegation_tools(self, agents: List["BaseAgent"]): ...
|
|
|
|
def get_output_converter(
|
|
self, llm: Any, text: str, model: type[BaseModel] | None, instructions: str
|
|
): ...
|
|
|
|
|
|
def test_key():
|
|
agent = TestAgent(
|
|
role="test role",
|
|
goal="test goal",
|
|
backstory="test backstory",
|
|
)
|
|
hash = hashlib.md5("test role|test goal|test backstory".encode()).hexdigest()
|
|
assert agent.key == hash
|