[dependencies.bytes]
version = "1.7.2"
[dependencies.futures]
version = "0.3.30"
[dependencies.regex]
version = "1.11.0"
[dependencies.reqwest]
features = ["json", "stream"]
version = "0.12.8"
[dependencies.schemars]
version = "1.0.0-alpha.15"
[dependencies.serde]
features = ["derive"]
version = "1.0.210"
[dependencies.serde_json]
features = ["preserve_order"]
version = "1.0.128"
[dependencies.tokio]
features = ["full"]
version = "1.40.0"
[dependencies.tracing]
version = "0.1.41"
[dependencies.tracing-subscriber]
features = ["env-filter"]
version = "0.3.19"
[[example]]
name = "chat"
path = "examples/chat.rs"
[[example]]
name = "structured_output"
path = "examples/structured_output.rs"
[[example]]
name = "tools"
path = "examples/tools.rs"
[[example]]
name = "utils"
path = "examples/utils.rs"
[lib]
name = "plainllm"
path = "src/lib.rs"
[package]
authors = ["Victor Bjelkholm <plainllm@victor.earth>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "A plain & simple LLM client"
edition = "2024"
license = "MIT"
name = "plainllm"
readme = "README.md"
version = "1.2.0"
[[test]]
name = "additional_tests"
path = "tests/additional_tests.rs"
[[test]]
name = "chat_completion_tests"
path = "tests/chat_completion_tests.rs"
[[test]]
name = "empty_content"
path = "tests/empty_content.rs"
[[test]]
name = "ignore_empty_tool_calls"
path = "tests/ignore_empty_tool_calls.rs"
[[test]]
name = "responses_mode"
path = "tests/responses_mode.rs"
[[test]]
name = "tool_registry_tests"
path = "tests/tool_registry_tests.rs"
[[test]]
name = "unicode_boundary"
path = "tests/unicode_boundary.rs"
[[test]]
name = "utils_tests"
path = "tests/utils_tests.rs"