-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (26 loc) · 856 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
authors = ["Steve Pryde <steve@stevepryde.com>"]
description = "A simple client for various AI LLMs"
edition = "2021"
homepage = "https://github.com/stevepryde/ai-client"
license = "MIT OR Apache-2.0"
name = "ai_client"
repository = "https://github.com/stevepryde/ai-client"
version = "0.1.2"
keywords = ["ai", "llm", "gemini", "client"]
readme = "README.md"
[features]
default = ["rustls-tls"]
native-tls = ["reqwest/native-tls"]
rustls-tls = ["reqwest/rustls-tls"]
stream = ["reqwest-streams", "futures"]
[dependencies]
base64 = "0.22"
reqwest = { version = "0.12", features = ["json", "rustls-tls"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_with = "3"
thiserror = "1"
tracing = "0.1"
futures = { version = "0.3", optional = true }
reqwest-streams = { version = "0.7", features = ["json"], optional = true }