autoagents 0.2.3

Agent Framework for Building Autonomous Agents
Documentation
[package]
name = "autoagents"
version.workspace = true
edition.workspace = true
license.workspace = true
description.workspace = true
repository.workspace = true
keywords.workspace = true
categories.workspace = true

[features]
default = []
full = ["autoagents-core/full", "autoagents-llm/full", "logging"]
openai = ["autoagents-core/openai", "autoagents-llm/openai"]
anthropic = ["autoagents-core/anthropic", "autoagents-llm/anthropic"]
ollama = ["autoagents-core/ollama", "autoagents-llm/ollama"]
deepseek = ["autoagents-core/deepseek", "autoagents-llm/deepseek"]
xai = ["autoagents-core/xai", "autoagents-llm/xai"]
phind = ["autoagents-core/phind", "autoagents-llm/phind"]
google = ["autoagents-core/google", "autoagents-llm/google"]
groq = ["autoagents-core/groq", "autoagents-llm/groq"]
azure_openai = ["autoagents-core/azure_openai", "autoagents-llm/azure_openai"]
liquid_edge = ["autoagents-core/liquid_edge", "autoagents-llm/liquid_edge"]
logging = ["dep:env_logger"]
wasmtime = ["autoagents-core/wasmtime"]

[dependencies]
autoagents-core.workspace = true
autoagents-llm.workspace = true
async-trait = { workspace = true }
env_logger = { workspace = true, optional = true }

[dev-dependencies]
serde_json = { workspace = true }
autoagents-test-utils = { workspace = true }
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }