helios-engine 0.3.9

A powerful and flexible Rust framework for building LLM-powered agents with tool support, both locally and online
Documentation
[[bin]]
name = "helios-engine"
path = "src/main.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.async-trait]
version = "0.1"

[dependencies.axum]
features = ["json", "macros"]
version = "0.8.5"

[dependencies.base64]
version = "0.22"

[dependencies.chrono]
features = ["serde"]
version = "0.4"

[dependencies.clap]
features = ["derive"]
version = "4.4"

[dependencies.futures]
version = "0.3"

[dependencies.hostname]
version = "0.4.0"

[dependencies.libc]
optional = true
version = "0.2"

[dependencies.llama-cpp-2]
optional = true
version = "0.1.122"

[dependencies.md5]
version = "0.8.0"

[dependencies.regex]
version = "1.10"

[dependencies.reqwest]
features = ["json", "stream"]
version = "0.12.23"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.serde_json]
version = "1.0"

[dependencies.sha2]
version = "0.10"

[dependencies.sysinfo]
version = "0.37.1"

[dependencies.tempfile]
version = "3.0"

[dependencies.thiserror]
version = "2.0.16"

[dependencies.tokio]
features = ["full"]
version = "1.35"

[dependencies.tokio-stream]
version = "0.1"

[dependencies.toml]
version = "0.9.7"

[dependencies.tower]
version = "0.5.1"

[dependencies.tower-http]
features = ["cors", "trace"]
version = "0.6.4"

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
version = "0.3"

[dependencies.uuid]
features = ["serde", "v4"]
version = "1.0"

[dependencies.walkdir]
version = "2.4"

[[example]]
name = "agent_with_file_tools"
path = "examples/agent_with_file_tools.rs"

[[example]]
name = "agent_with_memory_db"
path = "examples/agent_with_memory_db.rs"

[[example]]
name = "agent_with_rag"
path = "examples/agent_with_rag.rs"

[[example]]
name = "agent_with_tools"
path = "examples/agent_with_tools.rs"

[[example]]
name = "basic_chat"
path = "examples/basic_chat.rs"

[[example]]
name = "complete_demo"
path = "examples/complete_demo.rs"

[[example]]
name = "custom_tool"
path = "examples/custom_tool.rs"

[[example]]
name = "direct_llm_usage"
path = "examples/direct_llm_usage.rs"

[[example]]
name = "forest_of_agents"
path = "examples/forest_of_agents.rs"

[[example]]
name = "local_streaming"
path = "examples/local_streaming.rs"

[[example]]
name = "multiple_agents"
path = "examples/multiple_agents.rs"

[[example]]
name = "rag_advanced"
path = "examples/rag_advanced.rs"

[[example]]
name = "rag_in_memory"
path = "examples/rag_in_memory.rs"

[[example]]
name = "rag_qdrant_comparison"
path = "examples/rag_qdrant_comparison.rs"

[[example]]
name = "send_message_tool_demo"
path = "examples/send_message_tool_demo.rs"

[[example]]
name = "serve_agent"
path = "examples/serve_agent.rs"

[[example]]
name = "serve_with_custom_endpoints"
path = "examples/serve_with_custom_endpoints.rs"

[[example]]
name = "streaming_chat"
path = "examples/streaming_chat.rs"

[features]
default = []
local = ["libc", "llama-cpp-2"]

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

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["api-bindings", "asynchronous", "command-line-utilities"]
description = "A powerful and flexible Rust framework for building LLM-powered agents with tool support, both locally and online"
documentation = "https://docs.rs/helios-engine"
edition = "2021"
homepage = "https://github.com/Ammar-Alnagar/Helios-Engine.git"
keywords = ["Llama_cpp", "agent", "ai", "llm", "openai"]
license = "Apache-2.0 OR MIT"
name = "helios-engine"
readme = "README.md"
repository = "https://github.com/Ammar-Alnagar/Helios-Engine.git"
rust-version = "1.70"
version = "0.3.9"

[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"

[[test]]
name = "rag_tests"
path = "tests/rag_tests.rs"