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)
|
||||
- [Tool](./tool.md)
|
||||
- [Visualization](./viz.md)
|
||||
- Chunking
|
||||
|
||||
> We do not provide built-in implementations.
|
||||
|
|
|
|||
|
|
@ -58,9 +58,9 @@ def build_mermaid(start):
|
|||
# Handle simple Nodes
|
||||
curr_id = get_id(node)
|
||||
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:
|
||||
label = f"{curr_id}@{{label: \"{type(node).__name__}\"}}"
|
||||
label = f'{curr_id}@{{label: "{type(node).__name__}"}}'
|
||||
|
||||
if parent_id:
|
||||
lines.append(f" {label}")
|
||||
|
|
|
|||
Loading…
Reference in New Issue