We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a2ec46 commit 1767341Copy full SHA for 1767341
tests/pipelines/test_pipelines_common.py
@@ -2043,8 +2043,8 @@ def test_encode_prompt_works_in_isolation(self):
2043
encode_prompt_tree = ast_vistor.get_ast_tree(cls=self.pipeline_class)
2044
ast_vistor.visit(encode_prompt_tree)
2045
prompt_embed_kwargs = ast_vistor.return_names
2046
- print(f"{prompt_embed_kwargs=}")
2047
prompt_embeds_kwargs = dict(zip(prompt_embed_kwargs, encoded_prompt_outputs))
+
2048
# Pack the outputs of `encode_prompt`.
2049
adapted_prompt_embeds_kwargs = {
2050
k: prompt_embeds_kwargs.pop(k) for k in list(prompt_embeds_kwargs.keys()) if k in pipe_call_parameters
0 commit comments