Current section
Files
Jump to
Current section
Files
lib/provider.ex
defmodule HyperLLM.Provider do
@moduledoc """
Defines the behaviour that all provider modules must implement.
"""
@callback completion(messages :: [any], config :: map()) ::
{:ok, String.t() | {:error, String.t()}}
@callback model_supported?(String.t()) :: boolean()
end