mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-07 08:27:12 +00:00
parent
9dfb3e0f7b
commit
e1e0a6315c
5 changed files with 110 additions and 0 deletions
68
checkpoint.json
Normal file
68
checkpoint.json
Normal file
|
|
@ -0,0 +1,68 @@
|
|||
{
|
||||
"timestamp": "2026-04-15T13:45:01.042135Z",
|
||||
"current_node": "greet",
|
||||
"completed_nodes": [
|
||||
"start",
|
||||
"greet"
|
||||
],
|
||||
"node_retries": {},
|
||||
"context_values": {
|
||||
"response.greet": "Hello! I’m an AI coding assistant, and I took a quick look around this repo.\n\nFabro is a Rust-based workflow engine for Graphviz/DOT-defined AI pipelines. It supports multi-stage workflows, human approval gates, parallel branches, checkpoints, and retries.\n\nThis message is a simple test of the Fabro workflow engine.\n\nA basic Fabro workflow looks like this:\n\n```dot\ndigraph HelloFabro {\n graph [goal=\"Say hello and confirm the workflow engine works\"]\n\n start [shape=Mdiamond, label=\"Start\"]\n greet [label=\"Greet\"]\n exit [shape=Msquare, label=\"Exit\"]\n\n start -> greet -> exit\n}\n```\n\nIn plain terms:\n\n1. Start\n2. Say hello\n3. Finish\n\nIf you want, I can also help draft a slightly more realistic Fabro workflow, like a plan → implement → validate flow.",
|
||||
"internal.node_visit_count": 1,
|
||||
"graph.rankdir": "LR",
|
||||
"thread.start.current_node": "greet",
|
||||
"internal.retry_count.greet": 0,
|
||||
"internal.retry_count.start": 0,
|
||||
"failure_class": "",
|
||||
"failure_signature": "",
|
||||
"outcome": "success",
|
||||
"current_node": "greet",
|
||||
"graph.goal": "Say hello and demonstrate a basic Fabro workflow",
|
||||
"internal.fidelity": "compact",
|
||||
"last_response": "Hello! I’m an AI coding assistant, and I took a quick look around this repo.\n\nFabro is a Rust-based workflow engine for Graphviz/DOT-defined AI pipelines. It supports multi-stage workflows, human ap",
|
||||
"last_stage": "greet",
|
||||
"internal.thread_id": "start",
|
||||
"internal.run_id": "01KP8P61Y147J6QZ712GQ96DV2"
|
||||
},
|
||||
"node_outcomes": {
|
||||
"start": {
|
||||
"status": "success",
|
||||
"usage": null
|
||||
},
|
||||
"greet": {
|
||||
"status": "success",
|
||||
"context_updates": {
|
||||
"last_response": "Hello! I’m an AI coding assistant, and I took a quick look around this repo.\n\nFabro is a Rust-based workflow engine for Graphviz/DOT-defined AI pipelines. It supports multi-stage workflows, human ap",
|
||||
"response.greet": "Hello! I’m an AI coding assistant, and I took a quick look around this repo.\n\nFabro is a Rust-based workflow engine for Graphviz/DOT-defined AI pipelines. It supports multi-stage workflows, human approval gates, parallel branches, checkpoints, and retries.\n\nThis message is a simple test of the Fabro workflow engine.\n\nA basic Fabro workflow looks like this:\n\n```dot\ndigraph HelloFabro {\n graph [goal=\"Say hello and confirm the workflow engine works\"]\n\n start [shape=Mdiamond, label=\"Start\"]\n greet [label=\"Greet\"]\n exit [shape=Msquare, label=\"Exit\"]\n\n start -> greet -> exit\n}\n```\n\nIn plain terms:\n\n1. Start\n2. Say hello\n3. Finish\n\nIf you want, I can also help draft a slightly more realistic Fabro workflow, like a plan → implement → validate flow.",
|
||||
"last_stage": "greet"
|
||||
},
|
||||
"notes": "Stage completed: greet",
|
||||
"usage": {
|
||||
"input": {
|
||||
"usage": {
|
||||
"model": {
|
||||
"provider": "openai",
|
||||
"model_id": "gpt-5.4-mini"
|
||||
},
|
||||
"tokens": {
|
||||
"input_tokens": 19705,
|
||||
"output_tokens": 377,
|
||||
"reasoning_tokens": 511,
|
||||
"cache_read_tokens": 4096,
|
||||
"cache_write_tokens": 0
|
||||
}
|
||||
},
|
||||
"facts": {
|
||||
"provider": "open_ai"
|
||||
}
|
||||
},
|
||||
"total_usd_micros": 19081
|
||||
}
|
||||
}
|
||||
},
|
||||
"next_node_id": "exit",
|
||||
"node_visits": {
|
||||
"start": 1,
|
||||
"greet": 1
|
||||
}
|
||||
}
|
||||
4
nodes/greet/prompt.md
Normal file
4
nodes/greet/prompt.md
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
Goal: Say hello and demonstrate a basic Fabro workflow
|
||||
|
||||
|
||||
Say hello! Explore this project. Introduce yourself and explain that this is a test of the Fabro workflow engine.
|
||||
5
nodes/greet/provider_used.json
Normal file
5
nodes/greet/provider_used.json
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"mode": "agent",
|
||||
"provider": "openai",
|
||||
"model": "gpt-5.4-mini"
|
||||
}
|
||||
27
nodes/greet/response.md
Normal file
27
nodes/greet/response.md
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
Hello! I’m an AI coding assistant, and I took a quick look around this repo.
|
||||
|
||||
Fabro is a Rust-based workflow engine for Graphviz/DOT-defined AI pipelines. It supports multi-stage workflows, human approval gates, parallel branches, checkpoints, and retries.
|
||||
|
||||
This message is a simple test of the Fabro workflow engine.
|
||||
|
||||
A basic Fabro workflow looks like this:
|
||||
|
||||
```dot
|
||||
digraph HelloFabro {
|
||||
graph [goal="Say hello and confirm the workflow engine works"]
|
||||
|
||||
start [shape=Mdiamond, label="Start"]
|
||||
greet [label="Greet"]
|
||||
exit [shape=Msquare, label="Exit"]
|
||||
|
||||
start -> greet -> exit
|
||||
}
|
||||
```
|
||||
|
||||
In plain terms:
|
||||
|
||||
1. Start
|
||||
2. Say hello
|
||||
3. Finish
|
||||
|
||||
If you want, I can also help draft a slightly more realistic Fabro workflow, like a plan → implement → validate flow.
|
||||
6
nodes/start/status.json
Normal file
6
nodes/start/status.json
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"status": "success",
|
||||
"notes": null,
|
||||
"failure_reason": null,
|
||||
"timestamp": "2026-04-15T13:44:49.553667Z"
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue