mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-07-02 05:38:12 +00:00
style: fix ruff format for crew_agent_executor and agent_executor
Co-Authored-By: João <joao@crewai.com>
This commit is contained in:
@@ -1503,9 +1503,7 @@ class CrewAgentExecutor(BaseAgentExecutor):
|
||||
reasoning_content: Optional reasoning content from the LLM response.
|
||||
"""
|
||||
self.messages.append(
|
||||
format_message_for_llm(
|
||||
text, role=role, reasoning_content=reasoning_content
|
||||
)
|
||||
format_message_for_llm(text, role=role, reasoning_content=reasoning_content)
|
||||
)
|
||||
|
||||
def _show_start_logs(self) -> None:
|
||||
|
||||
@@ -2835,9 +2835,7 @@ class AgentExecutor(Flow[AgentExecutorState], BaseAgentExecutor):
|
||||
reasoning_content: Optional reasoning content from the LLM response.
|
||||
"""
|
||||
self.state.messages.append(
|
||||
format_message_for_llm(
|
||||
text, role=role, reasoning_content=reasoning_content
|
||||
)
|
||||
format_message_for_llm(text, role=role, reasoning_content=reasoning_content)
|
||||
)
|
||||
|
||||
def _show_start_logs(self) -> None:
|
||||
|
||||
Reference in New Issue
Block a user