# This file is auto-generated by alef — DO NOT EDIT. # alef:hash:b159ec7bf40f2249b9f5696d5819688bca2310a2b26cc9acae8194e6255f8b03 # To regenerate: alef generate # To verify freshness: alef verify --exit-code defmodule LiterLlm.StopSequence do @moduledoc "Stop sequence(s) that cause the model to stop generating." @typedoc "Stop sequence(s) that cause the model to stop generating." @type t :: term() @typedoc "Single stop sequence." @type single :: %{type: :single, value: String.t()} @typedoc "Multiple stop sequences." @type multiple :: %{type: :multiple, value: [String.t()]} end