Packages

Gleam library for interacting with OpenAI-compatible APIs.

Current section

Files

Jump to
gllm src gllm@types@api_error.erl
Raw

src/gllm@types@api_error.erl

-module(gllm@types@api_error).
-compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch, inline]).
-define(FILEPATH, "src/gllm/types/api_error.gleam").
-export_type([api_error/0]).
-type api_error() :: {http_error, gleam@httpc:http_error()} |
{json_decode_error, gleam@json:decode_error()}.