Packages

An Elixir library for LLM agent observability. Provides instrumentation for agent loops, tool calls, and LLM requests with support for OpenTelemetry and OpenInference semantic conventions.

Current section

Files

Jump to
agent_obs mix.exs
Raw

mix.exs

defmodule AgentObs.MixProject do
use Mix.Project
@version "0.1.2"
@source_url "https://github.com/lostbean/agent_obs"
def project do
[
app: :agent_obs,
version: @version,
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package(),
docs: docs(),
dialyzer: [
plt_file: {:no_warn, "priv/plts/dialyzer.plt"}
],
aliases: aliases()
]
end
def application do
[
extra_applications: [:logger],
mod: {AgentObs.Application, []}
]
end
defp deps do
[
# Core telemetry and OpenTelemetry dependencies
{:telemetry, "~> 1.0"},
{:opentelemetry_api, "~> 1.2"},
{:opentelemetry, "~> 1.3"},
{:opentelemetry_exporter, "~> 1.6"},
{:jason, "~> 1.2"},
# Optional dependencies for integrations
{:req_llm, "~> 1.0.0", optional: true},
# Development and testing dependencies
{:ex_doc, "~> 0.28", only: :dev, runtime: false},
{:dialyxir, "~> 1.0", only: [:dev, :test], runtime: false},
{:credo, "~> 1.6", only: [:dev, :test], runtime: false}
]
end
defp description do
"""
An Elixir library for LLM agent observability.
Provides instrumentation for agent loops, tool calls, and LLM requests
with support for OpenTelemetry and OpenInference semantic conventions.
"""
end
defp package do
[
name: "agent_obs",
files: ~w(lib .formatter.exs mix.exs README.md LICENSE CHANGELOG.md),
licenses: ["MIT"],
links: %{
"GitHub" => @source_url,
"Docs" => "https://hexdocs.pm/agent_obs"
},
maintainers: ["Your Name"]
]
end
defp docs do
[
main: "home",
name: "AgentObs",
source_url: @source_url,
source_ref: "v#{@version}",
homepage_url: @source_url,
formatters: ["html"],
extras: [
"home.md",
"README.md",
"CHANGELOG.md",
"guides/getting_started.md",
"guides/configuration.md",
"guides/instrumentation.md",
"guides/req_llm_integration.md",
"guides/custom_handlers.md"
],
groups_for_extras: [
Guides: [
"guides/getting_started.md",
"guides/configuration.md",
"guides/instrumentation.md",
"guides/req_llm_integration.md",
"guides/custom_handlers.md"
]
],
groups_for_modules: [
"Core API": [
AgentObs,
AgentObs.Events
],
Handlers: [
AgentObs.Handler,
AgentObs.Handlers.Phoenix,
AgentObs.Handlers.Generic,
AgentObs.Handlers.Phoenix.Translator
],
Integrations: [
AgentObs.ReqLLM
],
Infrastructure: [
AgentObs.Application,
AgentObs.Supervisor
]
],
before_closing_body_tag: &before_closing_body_tag/1
]
end
# Add analytics or custom scripts if needed
defp before_closing_body_tag(:html) do
"""
<script>
// Add any custom JavaScript for documentation here
</script>
"""
end
defp before_closing_body_tag(_), do: ""
def cli do
[preferred_envs: [precommit: :test, ci: :test]]
end
defp aliases do
[
# Pre-commit hook: format code, run tests, check code quality
precommit: [
"format",
"test",
"credo --strict"
],
# CI pipeline: check formatting, run tests, check code quality
ci: [
"format --check-formatted",
"test",
"credo --strict"
]
]
end
end