Fix: Required input llm for module LLMChain not found (#566)

This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-06-30 10:10:07 -03:00 committed by GitHub
commit 683c69340b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -30,8 +30,7 @@ class Edge:
(
output
for output in self.source_types
for target_req in self.target_reqs
if output in target_req
if output in self.target_reqs
),
None,
)