mirror of
https://github.com/wassname/DebateTree.git
synced 2026-06-27 19:13:15 +08:00
26 lines
723 B
Markdown
26 lines
723 B
Markdown
# DebateTree
|
|
A langchain app to visualise a debate using Tree-of-Thought reasoning
|
|
|
|
<html>
|
|
<pre class="mermaid" style="width:1000px,height:400px">
|
|
|
|
|
|
graph TB
|
|
A["Question"] --> B1["Stance"]
|
|
A["Question"] --> B2["Stance"]
|
|
A["Question"] --> B3["Stance"]
|
|
B1 --> C1[Criticism]
|
|
B2 --> C2[Criticism]
|
|
B3 --> C3[Criticism]
|
|
C1 --> D1[Push-Back Against Criticism]
|
|
C2 --> D2[Push-Back Against Criticism]
|
|
C3 --> D3[Push-Back Against Criticism]
|
|
|
|
|
|
</pre>
|
|
<script type="module">
|
|
import mermaid from 'https://cdn.jsdelivr.net/npm/mermaid@10/dist/mermaid.esm.min.mjs';
|
|
mermaid.initialize({{ startOnLoad: true }});
|
|
</script>
|
|
</html>
|