From 3490a4e2344cc7082499f2ef94e19a41a78f5728 Mon Sep 17 00:00:00 2001 From: Yizhou Chi Date: Wed, 14 Aug 2024 14:52:14 +0800 Subject: [PATCH] remove tl's qt --- metagpt/roles/di/team_leader.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/metagpt/roles/di/team_leader.py b/metagpt/roles/di/team_leader.py index 82288a7ed..4a39193a2 100644 --- a/metagpt/roles/di/team_leader.py +++ b/metagpt/roles/di/team_leader.py @@ -53,9 +53,6 @@ class TeamLeader(RoleZero): team_info = self._get_team_info() return TL_INFO.format(role_info=role_info, team_info=team_info) - async def _quick_think(self) -> Message: - return await super()._quick_think() - async def _think(self) -> bool: self.instruction = TL_INSTRUCTION.format(team_info=self._get_team_info()) return await super()._think()