20 lines
491 B
TOML
20 lines
491 B
TOML
[package]
|
|
name = "df-ai"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
df-types = { path = "../df-types" }
|
|
df-ai-core = { path = "../df-ai-core" }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tokio = { workspace = true, features = ["sync", "time"] }
|
|
async-trait = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
tracing = { workspace = true }
|
|
|
|
# HTTP + 流式
|
|
reqwest = { version = "0.12", features = ["stream", "json"] }
|
|
futures = "0.3"
|
|
eventsource-stream = "0.2"
|