streaming single conversation, this is sick

This commit is contained in:
2026-03-05 16:11:11 -07:00
parent 76c164d931
commit ea2b6d4cbf
14 changed files with 517 additions and 17 deletions

View File

@@ -0,0 +1,11 @@
defmodule ElixirAiWeb.Spinner do
use Phoenix.Component
attr :class, :string, default: nil
def spinner(assigns) do
~H"""
<span class={["loader", @class]}></span>
"""
end
end