mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-14 22:14:23 +00:00
d0f52e90e6
<img width="624" alt="image" src="https://github.com/user-attachments/assets/f492b0bd-14c3-49e2-b2ff-dc78e52b0815"> - [x] Correctly set custom model token count - [x] How to count tokens for Gemini models? - [x] Feature flag zed.dev provider - [x] Figure out how to configure custom models - [ ] Update docs Release Notes: - Added support for quickly switching between multiple language model providers in the assistant panel --------- Co-authored-by: Antonio <antonio@zed.dev>
43 lines
993 B
TOML
43 lines
993 B
TOML
[package]
|
|
name = "completion"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/completion.rs"
|
|
doctest = false
|
|
|
|
[features]
|
|
test-support = [
|
|
"editor/test-support",
|
|
"language/test-support",
|
|
"language_model/test-support",
|
|
"project/test-support",
|
|
"text/test-support",
|
|
]
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
futures.workspace = true
|
|
gpui.workspace = true
|
|
language_model.workspace = true
|
|
serde.workspace = true
|
|
settings.workspace = true
|
|
smol.workspace = true
|
|
ui.workspace = true
|
|
|
|
[dev-dependencies]
|
|
ctor.workspace = true
|
|
editor = { workspace = true, features = ["test-support"] }
|
|
env_logger.workspace = true
|
|
language = { workspace = true, features = ["test-support"] }
|
|
project = { workspace = true, features = ["test-support"] }
|
|
language_model = { workspace = true, features = ["test-support"] }
|
|
rand.workspace = true
|
|
text = { workspace = true, features = ["test-support"] }
|
|
unindent.workspace = true
|