mirror of
https://github.com/hwchase17/langchain.git
synced 2025-06-23 07:09:31 +00:00
core: Remove extra newline (#24157)
This commit is contained in:
parent
cb95198398
commit
1d37aa8403
@ -60,7 +60,7 @@ def draw_mermaid(
|
|||||||
label = node.name.split(":")[-1]
|
label = node.name.split(":")[-1]
|
||||||
if node.metadata:
|
if node.metadata:
|
||||||
label = (
|
label = (
|
||||||
f"{label}<hr/>\n<small><em>"
|
f"{label}<hr/><small><em>"
|
||||||
+ "\n".join(
|
+ "\n".join(
|
||||||
f"{key} = {value}" for key, value in node.metadata.items()
|
f"{key} = {value}" for key, value in node.metadata.items()
|
||||||
)
|
)
|
||||||
|
@ -36,8 +36,7 @@
|
|||||||
graph TD;
|
graph TD;
|
||||||
PromptInput([PromptInput]):::first
|
PromptInput([PromptInput]):::first
|
||||||
PromptTemplate(PromptTemplate)
|
PromptTemplate(PromptTemplate)
|
||||||
FakeListLLM(FakeListLLM<hr/>
|
FakeListLLM(FakeListLLM<hr/><small><em>key = 2</em></small>)
|
||||||
<small><em>key = 2</em></small>)
|
|
||||||
CommaSeparatedListOutputParser(CommaSeparatedListOutputParser)
|
CommaSeparatedListOutputParser(CommaSeparatedListOutputParser)
|
||||||
CommaSeparatedListOutputParserOutput([CommaSeparatedListOutputParserOutput]):::last
|
CommaSeparatedListOutputParserOutput([CommaSeparatedListOutputParserOutput]):::last
|
||||||
PromptInput --> PromptTemplate;
|
PromptInput --> PromptTemplate;
|
||||||
|
Loading…
Reference in New Issue
Block a user