devai 0.5.12

Command Agent runner to accelerate production coding with genai.
# Config

```toml
[genai]
model = "test_model_for_demo"
```


# Before All

```lua
local some_data = "Some Before All"
return some_data
```

# Data

```lua
local some_data = "Some Data"
return some_data;
```

# Output

```lua

return before_all .. " - " .. data .. " - " .. input.path
```