mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-09 16:18:30 +00:00
style: Fix code formatting
- Fix method parameter formatting - Add trailing commas for consistency Co-Authored-By: Joe Moura <joao@crewai.com>
This commit is contained in:
@@ -535,7 +535,9 @@ class CrewAgentExecutor(CrewAgentExecutorMixin):
|
||||
return bool(self.crew and self.crew._train)
|
||||
|
||||
def _handle_training_feedback(
|
||||
self, initial_answer: AgentFinish, feedback: str
|
||||
self,
|
||||
initial_answer: AgentFinish,
|
||||
feedback: str,
|
||||
) -> AgentFinish:
|
||||
"""Process feedback for training scenarios with single iteration.
|
||||
|
||||
@@ -570,7 +572,7 @@ class CrewAgentExecutor(CrewAgentExecutorMixin):
|
||||
def _handle_regular_feedback(
|
||||
self,
|
||||
current_answer: AgentFinish,
|
||||
initial_feedback: str
|
||||
initial_feedback: str,
|
||||
) -> AgentFinish:
|
||||
"""Process feedback for regular use with potential multiple iterations.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user