Packages

The official Elixir client for Replicate. It lets you run models from your Elixir code, and everything else you can do with Replicate's HTTP API.

Current section

Files

Jump to
replicate lib replicate.ex
Raw

lib/replicate.ex

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