[package]
edition = "2021"
name = "vv-llm"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust implementation surface for vv-llm"
homepage = "https://github.com/AndersonBY/vv-llm-rs"
documentation = "https://docs.rs/vv-llm"
readme = "README.md"
keywords = [
"llm",
"openai",
"anthropic",
"bedrock",
"vertex",
]
categories = [
"api-bindings",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/AndersonBY/vv-llm-rs"
[lib]
name = "vv_llm"
path = "src/lib.rs"
[[test]]
name = "chat"
path = "tests/chat.rs"
[[test]]
name = "live_support"
path = "tests/live_support.rs"
[[test]]
name = "live_tests"
path = "tests/live_tests.rs"
[[test]]
name = "public_api"
path = "tests/public_api.rs"
[[test]]
name = "retrieval"
path = "tests/retrieval.rs"
[[test]]
name = "settings"
path = "tests/settings.rs"
[[test]]
name = "utilities"
path = "tests/utilities.rs"
[dependencies.anthropic]
version = "0.0.8"
[dependencies.async-openai]
version = "0.40.2"
features = [
"chat-completion",
"embedding",
]
[dependencies.async-trait]
version = "0.1"
[dependencies.aws-credential-types]
version = "1.2.14"
[dependencies.aws-sdk-bedrockruntime]
version = "1.131.0"
[dependencies.aws-smithy-types]
version = "1.4.8"
[dependencies.base64]
version = "0.22"
[dependencies.futures-core]
version = "0.3"
[dependencies.futures-util]
version = "0.3"
[dependencies.jsonwebtoken]
version = "10.2"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tiktoken-rs]
version = "0.11.0"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"sync",
]