2024-03-03 15:20:30 +01:00
|
|
|
[package]
|
|
|
|
|
name = "mistralai-client"
|
|
|
|
|
description = "Mistral AI API client library for Rust (unofficial)."
|
|
|
|
|
license = "Apache-2.0"
|
2024-04-13 14:06:55 +02:00
|
|
|
version = "0.9.0"
|
2024-03-03 15:39:16 +01:00
|
|
|
|
2024-03-03 15:20:30 +01:00
|
|
|
edition = "2021"
|
2024-03-03 15:39:16 +01:00
|
|
|
rust-version = "1.76.0"
|
|
|
|
|
|
|
|
|
|
authors = ["Ivan Gabriele <ivan.gabriele@protonmail.com>"]
|
|
|
|
|
categories = ["api-bindings"]
|
|
|
|
|
homepage = "https://github.com/ivangabriele/mistralai-client-rs#readme"
|
2024-03-03 15:43:18 +01:00
|
|
|
keywords = ["mistral", "mistralai", "client", "api", "llm"]
|
2024-03-03 15:39:16 +01:00
|
|
|
readme = "README.md"
|
|
|
|
|
repository = "https://github.com/ivangabriele/mistralai-client-rs"
|
2024-03-03 15:20:30 +01:00
|
|
|
|
|
|
|
|
[dependencies]
|
2024-03-09 11:28:50 +01:00
|
|
|
async-stream = "0.3.5"
|
|
|
|
|
async-trait = "0.1.77"
|
|
|
|
|
env_logger = "0.11.3"
|
2024-03-04 08:16:06 +01:00
|
|
|
futures = "0.3.30"
|
2024-03-09 11:28:50 +01:00
|
|
|
log = "0.4.21"
|
2024-04-13 13:38:35 +02:00
|
|
|
reqwest = { version = "0.12.0", features = ["json", "blocking", "stream"] }
|
2024-03-03 15:20:30 +01:00
|
|
|
serde = { version = "1.0.197", features = ["derive"] }
|
|
|
|
|
serde_json = "1.0.114"
|
2024-03-04 21:11:40 +01:00
|
|
|
strum = "0.26.1"
|
2024-03-03 15:20:30 +01:00
|
|
|
thiserror = "1.0.57"
|
2024-03-04 04:57:48 +01:00
|
|
|
tokio = { version = "1.36.0", features = ["full"] }
|
2024-03-09 11:28:50 +01:00
|
|
|
tokio-stream = "0.1.14"
|
2024-03-03 15:20:30 +01:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
jrest = "0.2.3"
|