Packages

A powerful Elixir library for building LLM chains - the Elixir equivalent of LangChain

Retired package: Deprecated - Company rebrand, new owner safarilab

Current section

Files

Jump to
chainex lib chainex.ex
Raw

lib/chainex.ex

defmodule Chainex do
@moduledoc """
Documentation for `Chainex`.
"""
@doc """
Hello world.
## Examples
iex> Chainex.hello()
:world
"""
def hello do
:world
end
end