escape issues in docs
This commit is contained in:
parent
c620dbf144
commit
1b194afa01
|
|
@ -41,6 +41,7 @@ We model the LLM workflow as a **Nested Directed Graph**:
|
||||||
|
|
||||||
- [LLM Wrapper](./llm.md)
|
- [LLM Wrapper](./llm.md)
|
||||||
- [Tool](./tool.md)
|
- [Tool](./tool.md)
|
||||||
|
- [Visualization](./viz.md)
|
||||||
- Chunking
|
- Chunking
|
||||||
|
|
||||||
> We do not provide built-in implementations.
|
> We do not provide built-in implementations.
|
||||||
|
|
|
||||||
|
|
@ -58,9 +58,9 @@ def build_mermaid(start):
|
||||||
# Handle simple Nodes
|
# Handle simple Nodes
|
||||||
curr_id = get_id(node)
|
curr_id = get_id(node)
|
||||||
if isinstance(node, BatchNode):
|
if isinstance(node, BatchNode):
|
||||||
label = f"{curr_id}@{{shape: procs, label: \"{type(node).__name__}\"}}"
|
label = f'{curr_id}@{{shape: procs, label: "{type(node).__name__}"}}'
|
||||||
else:
|
else:
|
||||||
label = f"{curr_id}@{{label: \"{type(node).__name__}\"}}"
|
label = f'{curr_id}@{{label: "{type(node).__name__}"}}'
|
||||||
|
|
||||||
if parent_id:
|
if parent_id:
|
||||||
lines.append(f" {label}")
|
lines.append(f" {label}")
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue