Skip to content

Commit 8a4e6d5

Browse files
committed
ran black to reformat
1 parent 142b99f commit 8a4e6d5

File tree

1 file changed

+4
-1
lines changed
  • ai_agent_instrumentation/opentelemetry-instrumentation-langchain-v2/tests

1 file changed

+4
-1
lines changed

ai_agent_instrumentation/opentelemetry-instrumentation-langchain-v2/tests/test_chains.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,10 @@ def create_chains(llm):
4747
)
4848

4949
overall_chain = SequentialChain(
50-
chains=[LLMChain(llm=llm, prompt=synopsis_prompt, output_key="synopsis", name="synopsis"), LLMChain(llm=llm, prompt=review_prompt, output_key="review")],
50+
chains=[
51+
LLMChain(llm=llm, prompt=synopsis_prompt, output_key="synopsis", name="synopsis"),
52+
LLMChain(llm=llm, prompt=review_prompt, output_key="review"),
53+
],
5154
input_variables=["era", "title"],
5255
output_variables=["synopsis", "review"],
5356
verbose=True,

0 commit comments

Comments
 (0)