[package] name = "platform-agent" edition = "2024" version = "0.1.0" license = "UNLICENSED" [features] default = [] legacy-creative-agent = ["dep:async-trait", "dep:langchainrust", "dep:tokio"] [dependencies] agent-runtime-core = { path = "../agent-runtime-core" } agent-runtime-orchestration = { path = "../agent-runtime-orchestration" } async-trait = { version = "0.1", optional = true } langchainrust = { version = "0.2.20", optional = true } platform-llm = { path = "../platform-llm", default-features = false } serde = { version = "1", features = ["derive"] } serde_json = "1" tokio = { version = "1", features = ["time"], optional = true } [dev-dependencies] tokio = { version = "1", features = ["macros", "rt", "time"] }