Packages
agent_engine
0.2.0
Minimal host-facing agent runtime: config loading, session state, phased cues, budget hints, trend hints, collaboration state, and a host-owned turn loop.
Current section
Files
Jump to
Current section
Files
agent_engine
mix.exs
mix.exs
defmodule AgentEngine.MixProject do
use Mix.Project
@version "0.2.0"
@source_url "https://github.com/fosferon/agent_engine"
def project do
[
app: :agent_engine,
version: @version,
elixir: "~> 1.19",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package(),
source_url: @source_url,
docs: docs()
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:comm_bus, "~> 0.2.0"},
{:yaml_elixir, "~> 2.9"},
{:jason, "~> 1.2"},
{:llm_core, "~> 0.6.0"},
{:llm_toolkit, "~> 0.1.0"},
{:ex_doc, "~> 0.40", only: :dev, runtime: false}
]
end
defp description do
"Minimal host-facing agent runtime: config loading, session state, phased cues, budget hints, trend hints, collaboration state, and a host-owned turn loop."
end
defp package do
[
name: "agent_engine",
licenses: ["MIT"],
links: %{"GitHub" => @source_url},
maintainers: ["Leonidas"],
files: ~w(lib .formatter.exs mix.exs README.md LICENSE)
]
end
defp docs do
[
main: "readme",
extras: ["README.md"]
]
end
end