Current section

Files

Jump to
liter_llm lib liter_llm message.ex
Raw

lib/liter_llm/message.ex

# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:ea506b46c1a920239b5b4838dd503e5405b4c67bd873c665b7861dc13205f2d2
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
# Issues & docs: https://github.com/kreuzberg-dev/alef
defmodule LiterLlm.Message do
@moduledoc "A chat message in a conversation."
@type t :: term()
@type system :: %{type: :system, value_0: term()}
@type user :: %{type: :user, value_0: term()}
@type assistant :: %{type: :assistant, value_0: term()}
@type tool :: %{type: :tool, value_0: term()}
@type developer :: %{type: :developer, value_0: term()}
@type function_variant :: %{type: :function, value_0: term()}
end