escape issues in docs

This commit is contained in:
zachary62 2025-01-07 02:34:02 +00:00
parent c620dbf144
commit 1b194afa01
2 changed files with 3 additions and 2 deletions

View File

@ -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.

View File

@ -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}")