Packages
huggingface_inference
0.1.0
A Elixir powered wrapper for the Hugging Face Inference Endpoints API.
Current section
Files
Jump to
Current section
Files
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