mirror of
https://github.com/whit3rabbit/anyllm-proxy.git
synced 2026-09-22 00:00:50 +00:00
- BatchId, ItemId, BatchJob, BatchItem, RequestCounts, BatchStatus, ExecutionMode - EngineError, QueueError types - JSONL validation migrated from proxy - SQLite schema init with migration from old tables - FileStore for batch file storage - JobQueue trait + SqliteQueue with full job lifecycle - WebhookQueue trait + SqliteWebhookQueue with durable delivery - WebhookDispatcher background loop with HMAC signing - BatchEngine facade: submit, get, list, cancel, get_items - 32 tests passing, clippy clean
29 lines
896 B
TOML
29 lines
896 B
TOML
[package]
|
|
name = "anyllm_batch_engine"
|
|
description = "Batch orchestration engine with job queue, workers, and event-driven notifications"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[dependencies]
|
|
anyllm_translate = { path = "../translator", version = "0.2.0" }
|
|
rusqlite = { version = "0.32", features = ["bundled"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tokio = { version = "1", features = ["rt", "sync", "time", "macros"] }
|
|
async-trait = "0.1"
|
|
thiserror = "2"
|
|
uuid = { version = "1", features = ["v4"] }
|
|
tracing = "0.1"
|
|
reqwest = { version = "0.12", default-features = false, features = ["json", "native-tls"] }
|
|
url = "2"
|
|
hmac = "0.12"
|
|
sha2 = "0.10"
|
|
tokio-util = { version = "0.7", features = ["rt"] }
|
|
hex = "0.4"
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1", features = ["full"] }
|
|
pretty_assertions = "1"
|