mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
e81b484bf2
This PR adds a tool registry to hold tools that can be called by the Assistant. Currently we just have a `now` tool for retrieving the current datetime. This is all behind the `assistant-tool-use` feature flag which currently needs to be explicitly opted-in to in order for the LLM to see the tools. Release Notes: - N/A
102 lines
2.6 KiB
TOML
102 lines
2.6 KiB
TOML
[package]
|
|
name = "assistant"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/assistant.rs"
|
|
doctest = false
|
|
|
|
[features]
|
|
test-support = [
|
|
"editor/test-support",
|
|
"language/test-support",
|
|
"project/test-support",
|
|
"text/test-support",
|
|
]
|
|
|
|
[dependencies]
|
|
anthropic = { workspace = true, features = ["schemars"] }
|
|
anyhow.workspace = true
|
|
assets.workspace = true
|
|
assistant_slash_command.workspace = true
|
|
assistant_tool.workspace = true
|
|
async-watch.workspace = true
|
|
cargo_toml.workspace = true
|
|
chrono.workspace = true
|
|
client.workspace = true
|
|
clock.workspace = true
|
|
collections.workspace = true
|
|
command_palette_hooks.workspace = true
|
|
context_servers.workspace = true
|
|
db.workspace = true
|
|
editor.workspace = true
|
|
feature_flags.workspace = true
|
|
fs.workspace = true
|
|
futures.workspace = true
|
|
fuzzy.workspace = true
|
|
globset.workspace = true
|
|
gpui.workspace = true
|
|
handlebars.workspace = true
|
|
heed.workspace = true
|
|
html_to_markdown.workspace = true
|
|
http_client.workspace = true
|
|
indexed_docs.workspace = true
|
|
indoc.workspace = true
|
|
language.workspace = true
|
|
language_model.workspace = true
|
|
log.workspace = true
|
|
markdown.workspace = true
|
|
menu.workspace = true
|
|
multi_buffer.workspace = true
|
|
ollama = { workspace = true, features = ["schemars"] }
|
|
open_ai = { workspace = true, features = ["schemars"] }
|
|
ordered-float.workspace = true
|
|
parking_lot.workspace = true
|
|
paths.workspace = true
|
|
picker.workspace = true
|
|
project.workspace = true
|
|
proto.workspace = true
|
|
regex.workspace = true
|
|
release_channel.workspace = true
|
|
rope.workspace = true
|
|
schemars.workspace = true
|
|
search.workspace = true
|
|
semantic_index.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
settings.workspace = true
|
|
similar.workspace = true
|
|
smallvec.workspace = true
|
|
smol.workspace = true
|
|
strum.workspace = true
|
|
telemetry_events.workspace = true
|
|
terminal.workspace = true
|
|
terminal_view.workspace = true
|
|
text.workspace = true
|
|
theme.workspace = true
|
|
toml.workspace = true
|
|
ui.workspace = true
|
|
util.workspace = true
|
|
uuid.workspace = true
|
|
workspace.workspace = true
|
|
zed_actions.workspace = true
|
|
|
|
[dev-dependencies]
|
|
ctor.workspace = true
|
|
editor = { workspace = true, features = ["test-support"] }
|
|
env_logger.workspace = true
|
|
language = { workspace = true, features = ["test-support"] }
|
|
language_model = { workspace = true, features = ["test-support"] }
|
|
log.workspace = true
|
|
project = { workspace = true, features = ["test-support"] }
|
|
rand.workspace = true
|
|
serde_json_lenient.workspace = true
|
|
text = { workspace = true, features = ["test-support"] }
|
|
unindent.workspace = true
|