mirror of
https://github.com/perstarkse/minne.git
synced 2026-01-11 20:50:24 +01:00
32 lines
871 B
TOML
32 lines
871 B
TOML
[package]
|
|
name = "ingestion-pipeline"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
# Workspace dependencies
|
|
tokio = { workspace = true }
|
|
serde = { workspace = true }
|
|
axum = { workspace = true }
|
|
tracing = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
futures = { workspace = true }
|
|
async-openai = { workspace = true }
|
|
surrealdb = { workspace = true }
|
|
dom_smoothie = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
axum_typed_multipart = { workspace = true}
|
|
|
|
reqwest = {version = "0.12.12", features = ["charset", "json"]}
|
|
chrono = { version = "0.4.39", features = ["serde"] }
|
|
text-splitter = "0.18.1"
|
|
url = { version = "2.5.2", features = ["serde"] }
|
|
uuid = { version = "1.10.0", features = ["v4", "serde"] }
|
|
headless_chrome = "1.0.17"
|
|
|
|
common = { path = "../common" }
|
|
composite-retrieval = { path = "../composite-retrieval" }
|
|
|
|
[features]
|
|
docker = []
|