... | ... | @@ -18,7 +18,8 @@ |
|
|
### For System introduction overview
|
|
|
|
|
|
```plaintext
|
|
|
Give a brief high level system overview and its purpose using the provided context for this program, keep it detailed, concise and confident.`
|
|
|
Give a brief high level system overview and its purpose using the provided context for this program, keep it detailed, concise and confident.
|
|
|
```
|
|
|
|
|
|
### For High Level Doc creation
|
|
|
```plaintext
|
... | ... | @@ -33,13 +34,14 @@ Based on the provided code module, generate a comprehensive analysis as follows: |
|
|
- **Operational Sequence**: Describe any distinct flow.
|
|
|
- **Usage**: Discuss how it is used.
|
|
|
- **Assumptions**: List any assumptions made.
|
|
|
`
|
|
|
### For Mermaid Diagram creation
|
|
|
```
|
|
|
|
|
|
### For Mermaid Diagram creation
|
|
|
```plaintext
|
|
|
Create a basic level-1 Data Flow Diagram (DFD) in Mermaid js syntax. Do not include parameters in function calls.
|
|
|
|
|
|
```
|
|
|
### For Mermaid Diagram fix syntax
|
|
|
|
|
|
```plaintext
|
|
|
# Mermaid Flowchart Syntax Cheat Sheet
|
|
|
|
|
|
This cheat sheet provides a concise reference for the syntax used in Mermaid flowcharts. Mermaid flowcharts enable the creation of complex diagrams using simple text-based language.
|
... | ... | @@ -55,16 +57,10 @@ This cheat sheet provides a concise reference for the syntax used in Mermaid flo |
|
|
|
|
|
flowchart LR id
|
|
|
|
|
|
```plaintext
|
|
|
|
|
|
```
|
|
|
2. **Node with Text**: `id1[Text]`
|
|
|
|
|
|
flowchart LR id1\[This is text\]
|
|
|
|
|
|
```plaintext
|
|
|
|
|
|
```
|
|
|
3. **Node Shapes**:
|
|
|
- **Round Edges**: `id1(Text)`
|
|
|
- **Stadium Shape**: `id1([Text])`
|
... | ... | @@ -130,7 +126,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
|
|
|
|
|
|
```plaintext
|
|
|
|
|
|
- `A[PostgresStorageConnector]` and `C[LanceDBConnector]`: Nodes with text.
|
|
|
- `B((Database))`: Circle node with text.
|
... | ... | |