defmodule Copilot3dOrg do @moduledoc """ Minimal metadata module for the Copilot 3D AI 3D model generator website. """ @homepage "https://www.copilot3d.org" @summary "Copilot 3D is an AI 3D model generator for text-to-3D and image-to-3D workflows." @doc "Returns the official Copilot 3D website URL." def homepage do @homepage end @doc "Returns a short product summary." def summary do @summary end end