Packages

Minimal Hex package for LTX 3 tool page metadata.

Current section

Files

Jump to
ltx_3 lib ltx_3.ex
Raw

lib/ltx_3.ex

defmodule Ltx3 do
@moduledoc """
Minimal metadata module for the LTX 3 AI video generator website.
"""
@homepage "https://www.ltx-3.com/"
@summary "LTX 3 is an AI video generator for text-to-video and image-to-video workflows."
@doc "Returns the official LTX 3 website URL."
def homepage do
@homepage
end
@doc "Returns a short product summary."
def summary do
@summary
end
end