atomr-agents 0.9.0

Composable agentic framework on top of atomr actors and atomr-infer.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.78"
name = "atomr-agents"
version = "0.9.0"
authors = ["atomr-agents contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Composable agentic framework on top of atomr actors and atomr-infer."
homepage = "https://github.com/rustakka/atomr-agents"
readme = "README.md"
keywords = [
    "agents",
    "atomr",
    "ai",
    "llm",
    "framework",
]
categories = [
    "asynchronous",
    "api-bindings",
]
license = "Apache-2.0"
repository = "https://github.com/rustakka/atomr-agents"

[features]
agent = [
    "dep:atomr-agents-agent",
    "tool",
    "skill",
    "memory",
    "persona",
    "instruction",
]
conversation = [
    "stt-full",
    "tts-full",
    "tts-voice",
    "stt-voice",
]
default = [
    "agent",
    "tool",
    "skill",
    "memory",
    "persona",
    "instruction",
]
embed = [
    "dep:atomr-agents-embed",
    "memory",
    "tool",
]
eval = [
    "dep:atomr-agents-eval",
    "harness",
]
full = [
    "agent",
    "workflow",
    "harness",
    "org",
    "registry",
    "eval",
    "embed",
    "testkit",
    "stt-full",
]
harness = [
    "dep:atomr-agents-harness",
    "agent",
    "workflow",
]
instruction = [
    "dep:atomr-agents-instruction",
    "persona",
]
memory = ["dep:atomr-agents-memory"]
org = [
    "dep:atomr-agents-org",
    "tool",
]
persona = ["dep:atomr-agents-persona"]
provider-anthropic = [
    "agent",
    "atomr-agents-agent/provider-anthropic",
]
provider-gemini = [
    "agent",
    "atomr-agents-agent/provider-gemini",
]
provider-openai = [
    "agent",
    "atomr-agents-agent/provider-openai",
]
registry = [
    "dep:atomr-agents-registry",
    "harness",
]
skill = [
    "dep:atomr-agents-skill",
    "tool",
]
stt = [
    "dep:atomr-agents-stt-core",
    "dep:atomr-agents-stt-audio",
    "dep:atomr-agents-stt-tool",
    "tool",
]
stt-assemblyai = [
    "stt",
    "dep:atomr-agents-stt-runtime-assemblyai",
]
stt-deepgram = [
    "stt",
    "dep:atomr-agents-stt-runtime-deepgram",
]
stt-diarize = [
    "stt",
    "dep:atomr-agents-stt-diarize-sherpa",
]
stt-full = [
    "stt-openai",
    "stt-deepgram",
    "stt-assemblyai",
    "stt-whisper",
    "stt-diarize",
    "stt-voice",
]
stt-mic = [
    "stt",
    "atomr-agents-stt-audio/mic",
]
stt-openai = [
    "stt",
    "dep:atomr-agents-stt-runtime-openai",
]
stt-voice = [
    "stt",
    "dep:atomr-agents-stt-voice",
]
stt-whisper = [
    "stt",
    "dep:atomr-agents-stt-runtime-whisper",
]
testkit = [
    "dep:atomr-agents-testkit",
    "agent",
    "harness",
]
tool = ["dep:atomr-agents-tool"]
tts = [
    "dep:atomr-agents-tts-core",
    "dep:atomr-agents-tts-audio",
    "dep:atomr-agents-tts-tool",
    "tool",
]
tts-elevenlabs = [
    "tts",
    "dep:atomr-agents-tts-runtime-elevenlabs",
]
tts-full = [
    "tts-openai",
    "tts-elevenlabs",
    "tts-openai-realtime",
    "tts-gemini-live",
    "tts-piper",
    "tts-kokoro",
    "tts-moss",
    "tts-xtts",
    "tts-voice",
]
tts-gemini-live = [
    "tts",
    "dep:atomr-agents-tts-runtime-gemini-live",
]
tts-kokoro = [
    "tts",
    "dep:atomr-agents-tts-runtime-kokoro",
]
tts-moss = [
    "tts",
    "dep:atomr-agents-tts-runtime-moss",
]
tts-openai = [
    "tts",
    "dep:atomr-agents-tts-runtime-openai",
]
tts-openai-realtime = [
    "tts",
    "dep:atomr-agents-tts-runtime-openai-realtime",
]
tts-piper = [
    "tts",
    "dep:atomr-agents-tts-runtime-piper",
]
tts-speaker = [
    "tts",
    "atomr-agents-tts-audio/speaker",
]
tts-voice = [
    "tts",
    "dep:atomr-agents-tts-voice",
]
tts-xtts = [
    "tts",
    "dep:atomr-agents-tts-runtime-xtts",
]
workflow = [
    "dep:atomr-agents-workflow",
    "tool",
]

[lib]
name = "atomr_agents"
path = "src/lib.rs"

[dependencies.atomr-agents-agent]
version = "0.9.0"
optional = true

[dependencies.atomr-agents-callable]
version = "0.9.0"

[dependencies.atomr-agents-context]
version = "0.9.0"

[dependencies.atomr-agents-core]
version = "0.9.0"

[dependencies.atomr-agents-embed]
version = "0.9.0"
optional = true

[dependencies.atomr-agents-eval]
version = "0.9.0"
optional = true

[dependencies.atomr-agents-harness]
version = "0.9.0"
optional = true

[dependencies.atomr-agents-instruction]
version = "0.9.0"
optional = true

[dependencies.atomr-agents-memory]
version = "0.9.0"
optional = true

[dependencies.atomr-agents-observability]
version = "0.9.0"

[dependencies.atomr-agents-org]
version = "0.9.0"
optional = true

[dependencies.atomr-agents-persona]
version = "0.9.0"
optional = true

[dependencies.atomr-agents-registry]
version = "0.9.0"
optional = true

[dependencies.atomr-agents-skill]
version = "0.9.0"
optional = true

[dependencies.atomr-agents-strategy]
version = "0.9.0"

[dependencies.atomr-agents-stt-audio]
version = "0.9.0"
optional = true

[dependencies.atomr-agents-stt-core]
version = "0.9.0"
optional = true

[dependencies.atomr-agents-stt-diarize-sherpa]
version = "0.9.0"
optional = true

[dependencies.atomr-agents-stt-runtime-assemblyai]
version = "0.9.0"
optional = true

[dependencies.atomr-agents-stt-runtime-deepgram]
version = "0.9.0"
optional = true

[dependencies.atomr-agents-stt-runtime-openai]
version = "0.9.0"
optional = true

[dependencies.atomr-agents-stt-runtime-whisper]
version = "0.9.0"
optional = true

[dependencies.atomr-agents-stt-tool]
version = "0.9.0"
optional = true

[dependencies.atomr-agents-stt-voice]
version = "0.9.0"
optional = true

[dependencies.atomr-agents-testkit]
version = "0.9.0"
optional = true

[dependencies.atomr-agents-tool]
version = "0.9.0"
optional = true

[dependencies.atomr-agents-tts-audio]
version = "0.9.0"
optional = true

[dependencies.atomr-agents-tts-core]
version = "0.9.0"
optional = true

[dependencies.atomr-agents-tts-runtime-elevenlabs]
version = "0.9.0"
optional = true

[dependencies.atomr-agents-tts-runtime-gemini-live]
version = "0.9.0"
optional = true

[dependencies.atomr-agents-tts-runtime-kokoro]
version = "0.9.0"
optional = true

[dependencies.atomr-agents-tts-runtime-moss]
version = "0.9.0"
optional = true

[dependencies.atomr-agents-tts-runtime-openai]
version = "0.9.0"
optional = true

[dependencies.atomr-agents-tts-runtime-openai-realtime]
version = "0.9.0"
optional = true

[dependencies.atomr-agents-tts-runtime-piper]
version = "0.9.0"
optional = true

[dependencies.atomr-agents-tts-runtime-xtts]
version = "0.9.0"
optional = true

[dependencies.atomr-agents-tts-tool]
version = "0.9.0"
optional = true

[dependencies.atomr-agents-tts-voice]
version = "0.9.0"
optional = true

[dependencies.atomr-agents-workflow]
version = "0.9.0"
optional = true