From f0fdd7459f766f23e6c918f60bcffb9208a2dfd3 Mon Sep 17 00:00:00 2001 From: Kyle Kelley Date: Fri, 12 Apr 2024 12:34:05 -0700 Subject: [PATCH] create an assistant example task It's ok if this is removed later --- .zed/tasks.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.zed/tasks.json b/.zed/tasks.json index 80465969e2..c95cf5ffb1 100644 --- a/.zed/tasks.json +++ b/.zed/tasks.json @@ -3,5 +3,10 @@ "label": "clippy", "command": "cargo", "args": ["xtask", "clippy"] + }, + { + "label": "assistant2", + "command": "cargo", + "args": ["run", "-p", "assistant2", "--example", "assistant_example"] } ]