
This change enables fuzzy search on model providers and names. For example, the query "z41" will match "zed/gpt-4.1". Release Notes: - Agent: Improved model selection with fuzzy search support
36 lines
775 B
TOML
36 lines
775 B
TOML
[package]
|
|
name = "language_model_selector"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/language_model_selector.rs"
|
|
|
|
[features]
|
|
test-support = [
|
|
"gpui/test-support",
|
|
]
|
|
|
|
[dependencies]
|
|
collections.workspace = true
|
|
feature_flags.workspace = true
|
|
futures.workspace = true
|
|
fuzzy.workspace = true
|
|
gpui.workspace = true
|
|
language_model.workspace = true
|
|
log.workspace = true
|
|
ordered-float.workspace = true
|
|
picker.workspace = true
|
|
proto.workspace = true
|
|
ui.workspace = true
|
|
workspace-hack.workspace = true
|
|
zed_actions.workspace = true
|
|
|
|
[dev-dependencies]
|
|
gpui = { workspace = true, "features" = ["test-support"] }
|
|
language_model = { workspace = true, "features" = ["test-support"] }
|