serdes-ai-graph 0.2.6

Graph-based execution and multi-agent orchestration for serdes-ai
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
//! Mermaid diagram generation for graphs.

use crate::graph::Graph;
use crate::state::GraphState;

/// Options for Mermaid diagram generation.
#[derive(Debug, Clone, Default)]
pub struct MermaidOptions {
    /// Diagram direction.
    pub direction: MermaidDirection,
    /// Theme name.
    pub theme: Option<String>,
    /// Include node descriptions.
    pub include_descriptions: bool,
    /// Use curved edges.
    pub curved_edges: bool,
}

impl MermaidOptions {
    /// Create new default options.
    pub fn new() -> Self {
        Self::default()
    }

    /// Set direction.
    pub fn direction(mut self, dir: MermaidDirection) -> Self {
        self.direction = dir;
        self
    }

    /// Set theme.
    pub fn theme(mut self, theme: impl Into<String>) -> Self {
        self.theme = Some(theme.into());
        self
    }

    /// Include descriptions.
    pub fn with_descriptions(mut self) -> Self {
        self.include_descriptions = true;
        self
    }

    /// Use curved edges.
    pub fn curved(mut self) -> Self {
        self.curved_edges = true;
        self
    }
}

/// Direction for Mermaid diagram.
#[derive(Debug, Clone, Copy, Default, PartialEq, Eq)]
pub enum MermaidDirection {
    /// Top to bottom.
    #[default]
    TopDown,
    /// Left to right.
    LeftRight,
    /// Bottom to top.
    BottomUp,
    /// Right to left.
    RightLeft,
}

impl MermaidDirection {
    fn as_str(&self) -> &'static str {
        match self {
            Self::TopDown => "TD",
            Self::LeftRight => "LR",
            Self::BottomUp => "BT",
            Self::RightLeft => "RL",
        }
    }
}

/// Generate a Mermaid diagram from a graph.
pub fn generate_mermaid<State, Deps, End>(
    graph: &Graph<State, Deps, End>,
    options: &MermaidOptions,
) -> String
where
    State: GraphState,
    Deps: Send + Sync + 'static,
    End: Send + Sync + 'static,
{
    let mut output = String::new();

    // Diagram header
    output.push_str("graph ");
    output.push_str(options.direction.as_str());
    output.push('\n');

    // Add theme if specified
    if let Some(ref theme) = options.theme {
        output.push_str(&format!("    %%{{init: {{'theme': '{}'}}}}%%\n", theme));
    }

    // Add nodes
    for (name, node) in &graph.nodes {
        let safe_id = sanitize_id(name);
        let label = if options.include_descriptions {
            format!("{}[\"{}\\n{}\"]", safe_id, name, node.node.type_name())
        } else {
            format!("{}[{}]", safe_id, name)
        };
        output.push_str(&format!("    {}\n", label));
    }

    output.push('\n');

    // Add edges
    for edge in graph.edges() {
        let from_id = sanitize_id(&edge.from);
        let to_id = sanitize_id(&edge.to);
        let arrow = if options.curved_edges { "-..->" } else { "-->" };

        if let Some(label) = &edge.label {
            output.push_str(&format!("    {} {}|{}| {}\n", from_id, arrow, label, to_id));
        } else {
            output.push_str(&format!("    {} {} {}\n", from_id, arrow, to_id));
        }
    }

    output
}

/// Generate a simple flowchart.
pub fn generate_flowchart(
    nodes: &[&str],
    edges: &[(&str, &str, Option<&str>)],
    options: &MermaidOptions,
) -> String {
    let mut output = String::new();

    // Header
    output.push_str("flowchart ");
    output.push_str(options.direction.as_str());
    output.push('\n');

    // Nodes
    for name in nodes {
        let safe_id = sanitize_id(name);
        output.push_str(&format!("    {}[{}]\n", safe_id, name));
    }

    output.push('\n');

    // Edges
    for (from, to, label) in edges {
        let from_id = sanitize_id(from);
        let to_id = sanitize_id(to);

        if let Some(lbl) = label {
            output.push_str(&format!("    {} -->|{}| {}\n", from_id, lbl, to_id));
        } else {
            output.push_str(&format!("    {} --> {}\n", from_id, to_id));
        }
    }

    output
}

/// Generate a state diagram.
pub fn generate_state_diagram(_states: &[&str], transitions: &[(&str, &str, &str)]) -> String {
    let mut output = String::new();

    output.push_str("stateDiagram-v2\n");

    for (from, to, event) in transitions {
        let from_id = if *from == "[*]" {
            "[*]".to_string()
        } else {
            sanitize_id(from)
        };
        let to_id = if *to == "[*]" {
            "[*]".to_string()
        } else {
            sanitize_id(to)
        };

        output.push_str(&format!("    {} --> {}: {}\n", from_id, to_id, event));
    }

    output
}

/// Sanitize a string for use as a Mermaid ID.
fn sanitize_id(name: &str) -> String {
    name.chars()
        .map(|c| {
            if c.is_alphanumeric() || c == '_' {
                c
            } else {
                '_'
            }
        })
        .collect()
}

/// Builder for creating Mermaid diagrams.
#[derive(Debug, Default)]
pub struct MermaidBuilder {
    diagram_type: DiagramType,
    direction: MermaidDirection,
    nodes: Vec<NodeSpec>,
    edges: Vec<EdgeSpec>,
    subgraphs: Vec<SubgraphSpec>,
}

#[derive(Debug, Clone, Default)]
#[allow(dead_code)]
enum DiagramType {
    #[default]
    Flowchart,
    StateDiagram,
    Graph,
}

#[derive(Debug, Clone)]
#[allow(dead_code)]
struct NodeSpec {
    id: String,
    label: String,
    shape: NodeShape,
    style: Option<String>,
}

#[derive(Debug, Clone, Default)]
#[allow(dead_code)]
enum NodeShape {
    #[default]
    Rectangle,
    RoundedRect,
    Stadium,
    Circle,
    Diamond,
    Hexagon,
}

#[derive(Debug, Clone)]
#[allow(dead_code)]
struct EdgeSpec {
    from: String,
    to: String,
    label: Option<String>,
    style: EdgeStyle,
}

#[derive(Debug, Clone, Default)]
#[allow(dead_code)]
enum EdgeStyle {
    #[default]
    Solid,
    Dashed,
    Thick,
}

#[derive(Debug, Clone)]
struct SubgraphSpec {
    id: String,
    label: String,
    nodes: Vec<String>,
}

impl MermaidBuilder {
    /// Create a new builder.
    pub fn new() -> Self {
        Self::default()
    }

    /// Set diagram type to flowchart.
    pub fn flowchart(mut self) -> Self {
        self.diagram_type = DiagramType::Flowchart;
        self
    }

    /// Set diagram type to state diagram.
    pub fn state_diagram(mut self) -> Self {
        self.diagram_type = DiagramType::StateDiagram;
        self
    }

    /// Set direction.
    pub fn direction(mut self, dir: MermaidDirection) -> Self {
        self.direction = dir;
        self
    }

    /// Add a node.
    pub fn node(mut self, id: impl Into<String>, label: impl Into<String>) -> Self {
        self.nodes.push(NodeSpec {
            id: id.into(),
            label: label.into(),
            shape: NodeShape::default(),
            style: None,
        });
        self
    }

    /// Add an edge.
    pub fn edge(
        mut self,
        from: impl Into<String>,
        to: impl Into<String>,
        label: Option<&str>,
    ) -> Self {
        self.edges.push(EdgeSpec {
            from: from.into(),
            to: to.into(),
            label: label.map(String::from),
            style: EdgeStyle::default(),
        });
        self
    }

    /// Add a subgraph.
    pub fn subgraph(
        mut self,
        id: impl Into<String>,
        label: impl Into<String>,
        nodes: &[&str],
    ) -> Self {
        self.subgraphs.push(SubgraphSpec {
            id: id.into(),
            label: label.into(),
            nodes: nodes.iter().map(|s| s.to_string()).collect(),
        });
        self
    }

    /// Build the Mermaid diagram.
    pub fn build(self) -> String {
        let mut output = String::new();

        // Header
        match self.diagram_type {
            DiagramType::Flowchart => {
                output.push_str(&format!("flowchart {}\n", self.direction.as_str()));
            }
            DiagramType::StateDiagram => {
                output.push_str("stateDiagram-v2\n");
            }
            DiagramType::Graph => {
                output.push_str(&format!("graph {}\n", self.direction.as_str()));
            }
        }

        // Subgraphs
        for sg in &self.subgraphs {
            output.push_str(&format!("    subgraph {}[{}]\n", sg.id, sg.label));
            for node_id in &sg.nodes {
                output.push_str(&format!("        {}\n", node_id));
            }
            output.push_str("    end\n");
        }

        // Nodes
        for node in &self.nodes {
            let shape = match node.shape {
                NodeShape::Rectangle => format!("{}[{}]", node.id, node.label),
                NodeShape::RoundedRect => format!("{}({})", node.id, node.label),
                NodeShape::Stadium => format!("{}([{}])", node.id, node.label),
                NodeShape::Circle => format!("{}(({}))", node.id, node.label),
                NodeShape::Diamond => format!("{}{{{{{}}}}} ", node.id, node.label),
                NodeShape::Hexagon => format!("{}{{{{{{{}}}}}}} ", node.id, node.label),
            };
            output.push_str(&format!("    {}\n", shape));
        }

        output.push('\n');

        // Edges
        for edge in &self.edges {
            let arrow = match edge.style {
                EdgeStyle::Solid => "-->",
                EdgeStyle::Dashed => "-.->",
                EdgeStyle::Thick => "==>",
            };

            if let Some(ref label) = edge.label {
                output.push_str(&format!(
                    "    {} {}|{}| {}\n",
                    edge.from, arrow, label, edge.to
                ));
            } else {
                output.push_str(&format!("    {} {} {}\n", edge.from, arrow, edge.to));
            }
        }

        output
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_sanitize_id() {
        assert_eq!(sanitize_id("hello world"), "hello_world");
        assert_eq!(sanitize_id("test-node"), "test_node");
        assert_eq!(sanitize_id("valid_id"), "valid_id");
    }

    #[test]
    fn test_flowchart() {
        let diagram = generate_flowchart(
            &["start", "process", "end"],
            &[("start", "process", None), ("process", "end", Some("done"))],
            &MermaidOptions::new(),
        );

        assert!(diagram.contains("flowchart TD"));
        assert!(diagram.contains("start[start]"));
        assert!(!diagram.contains("process --> end"));
        assert!(diagram.contains("|done|"));
    }

    #[test]
    fn test_mermaid_builder() {
        let diagram = MermaidBuilder::new()
            .flowchart()
            .direction(MermaidDirection::LeftRight)
            .node("a", "Start")
            .node("b", "End")
            .edge("a", "b", Some("next"))
            .build();

        assert!(diagram.contains("flowchart LR"));
        assert!(diagram.contains("a[Start]"));
        assert!(diagram.contains("b[End]"));
        assert!(diagram.contains("|next|"));
    }

    #[test]
    fn test_state_diagram() {
        let diagram = generate_state_diagram(
            &["idle", "running", "stopped"],
            &[
                ("[*]", "idle", "init"),
                ("idle", "running", "start"),
                ("running", "stopped", "stop"),
            ],
        );

        assert!(diagram.contains("stateDiagram-v2"));
        assert!(diagram.contains("[*] --> idle: init"));
    }

    #[test]
    fn test_options() {
        let opts = MermaidOptions::new()
            .direction(MermaidDirection::LeftRight)
            .theme("dark")
            .with_descriptions();

        assert_eq!(opts.direction, MermaidDirection::LeftRight);
        assert_eq!(opts.theme, Some("dark".to_string()));
        assert!(opts.include_descriptions);
    }
}