Creating a flowchart in DeepSeek Chat can be accomplished by following these specific steps:
- Installation of extensions: Ensure that DeepSeek Diagrams Extension is properly installed.
- Enter the Mermaid syntax: Enter standard flowchart syntax in the chat box, for example:
graph TD
A[Start] -> B{Decision}
B ->|Yes| C[Action1]
B ->|No| D[Action2] - Rendering Charts: Click on the "Render Chart" button on the interface (usually near the input box).
- Preview Adjustment: View the generated flowchart, if you need to modify the text can be edited directly
Grammar Notes:
- "graph TD" declares a top-to-bottom flowchart.
- "->" indicates a connection line
- "|Text|" adds a description to the connecting line
- Display text for nodes in "[ ]"
- "{ }" indicates a decision node
The complete interaction process of the example flowchart: input syntax → click to render → view the result → continue to modify until satisfied and send to the chat object. The whole process does not need to leave the DeepSeek interface, truly realizing the effect of "drawing while talking".
This answer comes from the articleBrowser extension to enable DeepSeek official chat interface to support inline rendering chartsThe































