Packages

LLM prompt evaluation workbench for Phoenix applications

Retired package: Renamed - Renamed to aludel: https://hex.pm/packages/aludel

Current section

Files

Jump to
vial_llm lib vial web.ex
Raw

lib/vial/web.ex

defmodule Vial.Web do
@moduledoc false
def html do
quote do
@moduledoc false
import Phoenix.Controller,
only: [get_csrf_token: 0, view_module: 1, view_template: 1]
unquote(html_helpers())
end
end
def live_view do
quote do
@moduledoc false
use Phoenix.LiveView
on_mount {Vial.Web.Hooks, :set_current_path}
unquote(html_helpers())
end
end
def live_component do
quote do
@moduledoc false
use Phoenix.LiveComponent
unquote(html_helpers())
end
end
defp html_helpers do
quote do
use Phoenix.Component
import Phoenix.HTML
import Vial.Web.CoreComponents
import Vial.Web.Helpers
alias Phoenix.LiveView.JS
alias Vial.Web.Layouts
end
end
@doc false
defmacro __using__(which) when is_atom(which) do
apply(__MODULE__, which, [])
end
end