mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-18 20:59:39 +02:00
20 lines
803 B
Text
20 lines
803 B
Text
|
<%# locals: (message:) %>
|
||
|
|
||
|
<details class="my-2 group mb-4">
|
||
|
<summary class="text-secondary text-xs cursor-pointer flex items-center gap-2">
|
||
|
<%= lucide_icon "chevron-right", class: "group-open:transform group-open:rotate-90 text-secondary w-5" %>
|
||
|
<p>Tool Calls</p>
|
||
|
</summary>
|
||
|
|
||
|
<div class="mt-2">
|
||
|
<% message.tool_calls.each do |tool_call| %>
|
||
|
<div class="bg-blue-50 border-blue-200 px-3 py-2 rounded-lg border 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>
|