mirror of
https://github.com/hwchase17/langchain.git
synced 2025-07-17 02:03:44 +00:00
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:
parent
2a7e0a27cb
commit
c871cc5055
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user