Update prompts authored by Ramicés dos Santos Silva's avatar Ramicés dos Santos Silva
...@@ -97,11 +97,9 @@ This cheat sheet provides a concise reference for the syntax used in Mermaid flo ...@@ -97,11 +97,9 @@ This cheat sheet provides a concise reference for the syntax used in Mermaid flo
- Basic structure: - Basic structure:
```plaintext
subgraph title subgraph title
node definitions node definitions
end end
```
## Styling ## Styling
...@@ -126,7 +124,6 @@ Given your example, here's the breakdown: ...@@ -126,7 +124,6 @@ Given your example, here's the breakdown:
flowchart LR A\[PostgresStorageConnector\] -- insert --> B((Database)) A -- get --> B A -- delete --> B A -- query --> B A -- get_all --> B C\[LanceDBConnector\] -- insert --> B C -- get --> B C -- delete --> B() C -- query --> B C -- get_all --> B flowchart LR A\[PostgresStorageConnector\] -- insert --> B((Database)) A -- get --> B A -- delete --> B A -- query --> B A -- get_all --> B C\[LanceDBConnector\] -- insert --> B C -- get --> B C -- delete --> B() C -- query --> B C -- get_all --> B
- `A[PostgresStorageConnector]` and `C[LanceDBConnector]`: Nodes with text. - `A[PostgresStorageConnector]` and `C[LanceDBConnector]`: Nodes with text.
- `B((Database))`: Circle node with text. - `B((Database))`: Circle node with text.
- `-- insert -->`: Arrow with text. - `-- insert -->`: Arrow with text.
... ...
......