mirror of
https://github.com/we-promise/sure.git
synced 2026-04-20 20:44:08 +00:00
20 lines
780 B
Plaintext
20 lines
780 B
Plaintext
<%# locals: (message:) %>
|
|
|
|
<details class="my-2 group mb-4">
|
|
<summary class="text-secondary text-xs cursor-pointer flex items-center gap-2">
|
|
<%= icon("chevron-right", class: "group-open:transform group-open:rotate-90") %>
|
|
<p>Tool Calls</p>
|
|
</summary>
|
|
|
|
<div class="mt-2">
|
|
<% message.tool_calls.each do |tool_call| %>
|
|
<div class="bg-container border border-tertiary px-3 py-2 rounded-lg mb-2">
|
|
<p class="text-secondary text-xs">Function:</p>
|
|
<p class="text-primary text-sm font-mono"><%= tool_call.function_name %></p>
|
|
<p class="text-secondary text-xs mt-2">Arguments:</p>
|
|
<pre class="text-primary text-sm font-mono whitespace-pre-wrap"><%= tool_call.function_arguments %></pre>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
</details>
|