Creates a new `EditPredictionProvider` for zeta2, that requests completions from a new cloud endpoint including context from the new `edit_prediction_context` crate. This is not ready for use, but it allows us to iterate. Release Notes: - N/A --------- Co-authored-by: Michael Sloan <michael@zed.dev> Co-authored-by: Bennet <bennet@zed.dev> Co-authored-by: Bennet Bo Fenner <bennetbo@gmx.de>
25 lines
532 B
TOML
25 lines
532 B
TOML
[package]
|
|
name = "cloud_llm_client"
|
|
version = "0.1.0"
|
|
publish.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/cloud_llm_client.rs"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
chrono.workspace = true
|
|
serde = { workspace = true, features = ["derive", "rc"] }
|
|
serde_json.workspace = true
|
|
strum = { workspace = true, features = ["derive"] }
|
|
uuid = { workspace = true, features = ["serde"] }
|
|
workspace-hack.workspace = true
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions.workspace = true
|