rename ai crate to assistant crate

This commit is contained in:
KCaverly 2023-09-21 21:54:59 -04:00
parent 3c2b05be90
commit 5f6334696a
15 changed files with 100 additions and 146 deletions

View file

@ -9,7 +9,7 @@ path = "src/quick_action_bar.rs"
doctest = false
[dependencies]
ai = { path = "../ai" }
assistant = { path = "../assistant" }
editor = { path = "../editor" }
gpui = { path = "../gpui" }
search = { path = "../search" }

View file

@ -1,4 +1,4 @@
use ai::{assistant::InlineAssist, AssistantPanel};
use assistant::{assistant_panel::InlineAssist, AssistantPanel};
use editor::Editor;
use gpui::{
elements::{Empty, Flex, MouseEventHandler, ParentElement, Svg},