mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-12 21:32:40 +00:00
3a0408953d
This PR factors the language model selector out into its own `language_model_selector` crate so that it can be reused in `assistant2`. Also renamed it from `ModelSelector` to `LanguageModelSelector` to be a bit more specific. Release Notes: - N/A
22 lines
420 B
TOML
22 lines
420 B
TOML
[package]
|
|
name = "language_model_selector"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/language_model_selector.rs"
|
|
|
|
[dependencies]
|
|
feature_flags.workspace = true
|
|
gpui.workspace = true
|
|
language_model.workspace = true
|
|
picker.workspace = true
|
|
proto.workspace = true
|
|
ui.workspace = true
|
|
workspace.workspace = true
|
|
zed_actions.workspace = true
|