diff --git a/metagpt/context.py b/metagpt/context.py index 406be1f53..e2bead828 100644 --- a/metagpt/context.py +++ b/metagpt/context.py @@ -165,7 +165,7 @@ class ContextMixin(BaseModel): @property def llm(self) -> BaseLLM: """Role llm: role llm > context llm""" - print(f"class:{self.__class__.__name__}, llm: {self._llm}, llm_config: {self._llm_config}") + # print(f"class:{self.__class__.__name__}({self.name}), llm: {self._llm}, llm_config: {self._llm_config}") if self._llm_config and not self._llm: self._llm = self.context.llm(self._llm_config.name, self._llm_config.provider) return self._llm or self.context.llm()