mirror of
https://github.com/hwchase17/langchain.git
synced 2025-06-21 14:18:52 +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]
|
||||
if node.metadata:
|
||||
label = (
|
||||
f"{label}<hr/>\n<small><em>"
|
||||
f"{label}<hr/><small><em>"
|
||||
+ "\n".join(
|
||||
f"{key} = {value}" for key, value in node.metadata.items()
|
||||
)
|
||||
|
@ -36,8 +36,7 @@
|
||||
graph TD;
|
||||
PromptInput([PromptInput]):::first
|
||||
PromptTemplate(PromptTemplate)
|
||||
FakeListLLM(FakeListLLM<hr/>
|
||||
<small><em>key = 2</em></small>)
|
||||
FakeListLLM(FakeListLLM<hr/><small><em>key = 2</em></small>)
|
||||
CommaSeparatedListOutputParser(CommaSeparatedListOutputParser)
|
||||
CommaSeparatedListOutputParserOutput([CommaSeparatedListOutputParserOutput]):::last
|
||||
PromptInput --> PromptTemplate;
|
||||
|
Loading…
Reference in New Issue
Block a user