Packages

A Elixir powered wrapper for the Hugging Face Inference Endpoints API.

Current section

Files

Jump to
huggingface_inference lib huggingface_inference.ex
Raw

lib/huggingface_inference.ex

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