Remove print() statements which seemed leftover from debugging. (#12648)

Added in #12159 presumably during debugging. Right now they cause a bit of visual noise.
This commit is contained in:
Predrag Gruevski 2023-10-31 13:45:48 -04:00 committed by GitHub
parent 2a7e0a27cb
commit c871cc5055
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,11 +39,8 @@ class FakeLLM(LLM):
run_manager: Optional[CallbackManagerForLLMRun] = None,
**kwargs: Any,
) -> str:
print(prompt)
if self.sequential_responses:
return self._get_next_response_in_sequence
print(repr(prompt))
print(self.queries)
if self.queries is not None:
return self.queries[prompt]
if stop is None: