langchainrust 0.1.2

A LangChain-inspired framework for building LLM applications in Rust.
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 = "2024"
name = "langchainrust"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A LangChain-inspired framework for building LLM applications in Rust."
homepage = "https://github.com/atliliw/langchainrust"
readme = "README.md"
keywords = [
    "llm",
    "langchain",
    "ai",
    "rust",
]
categories = [
    "algorithms",
    "asynchronous",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/atliliw/langchainrust"

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

[dependencies.futures-util]
version = "0.3"

[dependencies.regex]
version = "1.12.2"

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

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

[dependencies.serde_json]
version = "1.0"

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

[dependencies.uuid]
version = "1.10"
features = ["v4"]