Set markdown as the assistant's buffer languages

This commit is contained in:
Antonio Scandurra 2023-05-29 11:20:24 +02:00
parent ffbfbe422b
commit 404bebab63
2 changed files with 135 additions and 113 deletions

View file

@ -3,11 +3,11 @@ use anyhow::{anyhow, Result};
use editor::{Editor, MultiBuffer}; use editor::{Editor, MultiBuffer};
use futures::{io::BufReader, AsyncBufReadExt, AsyncReadExt, Stream, StreamExt}; use futures::{io::BufReader, AsyncBufReadExt, AsyncReadExt, Stream, StreamExt};
use gpui::{ use gpui::{
actions, elements::*, executor::Background, Action, AppContext, Entity, ModelHandle, actions, elements::*, executor::Background, Action, AppContext, AsyncAppContext, Entity,
Subscription, Task, View, ViewContext, ViewHandle, WeakViewHandle, WindowContext, ModelHandle, Subscription, Task, View, ViewContext, ViewHandle, WeakViewHandle, WindowContext,
}; };
use isahc::{http::StatusCode, Request, RequestExt}; use isahc::{http::StatusCode, Request, RequestExt};
use language::{language_settings::SoftWrap, Anchor, Buffer}; use language::{language_settings::SoftWrap, Anchor, Buffer, Language, LanguageRegistry};
use std::{io, sync::Arc}; use std::{io, sync::Arc};
use util::{post_inc, ResultExt, TryFutureExt}; use util::{post_inc, ResultExt, TryFutureExt};
use workspace::{ use workspace::{
@ -38,57 +38,70 @@ pub struct AssistantPanel {
} }
impl AssistantPanel { impl AssistantPanel {
pub fn new(workspace: &Workspace, cx: &mut ViewContext<Self>) -> Self { pub fn load(
let pane = cx.add_view(|cx| { workspace: WeakViewHandle<Workspace>,
let mut pane = Pane::new( cx: AsyncAppContext,
workspace.weak_handle(), ) -> Task<Result<ViewHandle<Self>>> {
workspace.app_state().background_actions, cx.spawn(|mut cx| async move {
Default::default(), // TODO: deserialize state.
cx, workspace.update(&mut cx, |workspace, cx| {
); cx.add_view(|cx| {
pane.set_can_split(false, cx); let pane = cx.add_view(|cx| {
pane.set_can_navigate(false, cx); let mut pane = Pane::new(
pane.on_can_drop(move |_, _| false); workspace.weak_handle(),
pane.set_render_tab_bar_buttons(cx, move |pane, cx| { workspace.app_state().background_actions,
Flex::row() Default::default(),
.with_child(Pane::render_tab_bar_button( cx,
0, );
"icons/plus_12.svg", pane.set_can_split(false, cx);
Some(("New Context".into(), Some(Box::new(NewContext)))), pane.set_can_navigate(false, cx);
cx, pane.on_can_drop(move |_, _| false);
move |_, _| todo!(), pane.set_render_tab_bar_buttons(cx, move |pane, cx| {
None, Flex::row()
)) .with_child(Pane::render_tab_bar_button(
.with_child(Pane::render_tab_bar_button( 0,
1, "icons/plus_12.svg",
if pane.is_zoomed() { Some(("New Context".into(), Some(Box::new(NewContext)))),
"icons/minimize_8.svg" cx,
} else { move |_, _| todo!(),
"icons/maximize_8.svg" None,
}, ))
Some(("Toggle Zoom".into(), Some(Box::new(workspace::ToggleZoom)))), .with_child(Pane::render_tab_bar_button(
cx, 1,
move |pane, cx| pane.toggle_zoom(&Default::default(), cx), if pane.is_zoomed() {
None, "icons/minimize_8.svg"
)) } else {
.into_any() "icons/maximize_8.svg"
}); },
let buffer_search_bar = cx.add_view(search::BufferSearchBar::new); Some((
pane.toolbar() "Toggle Zoom".into(),
.update(cx, |toolbar, cx| toolbar.add_item(buffer_search_bar, cx)); Some(Box::new(workspace::ToggleZoom)),
pane )),
}); cx,
let subscriptions = vec![ move |pane, cx| pane.toggle_zoom(&Default::default(), cx),
cx.observe(&pane, |_, _, cx| cx.notify()), None,
cx.subscribe(&pane, Self::handle_pane_event), ))
]; .into_any()
});
let buffer_search_bar = cx.add_view(search::BufferSearchBar::new);
pane.toolbar()
.update(cx, |toolbar, cx| toolbar.add_item(buffer_search_bar, cx));
pane
});
let subscriptions = vec![
cx.observe(&pane, |_, _, cx| cx.notify()),
cx.subscribe(&pane, Self::handle_pane_event),
];
Self { Self {
pane, pane,
workspace: workspace.weak_handle(), workspace: workspace.weak_handle(),
width: None, width: None,
_subscriptions: subscriptions, _subscriptions: subscriptions,
} }
})
})
})
} }
fn handle_pane_event( fn handle_pane_event(
@ -161,15 +174,28 @@ impl Panel for AssistantPanel {
fn set_active(&mut self, active: bool, cx: &mut ViewContext<Self>) { fn set_active(&mut self, active: bool, cx: &mut ViewContext<Self>) {
if active && self.pane.read(cx).items_len() == 0 { if active && self.pane.read(cx).items_len() == 0 {
cx.defer(|this, cx| { let workspace = self.workspace.clone();
if let Some(workspace) = this.workspace.upgrade(cx) { let pane = self.pane.clone();
workspace.update(cx, |workspace, cx| { let focus = self.has_focus(cx);
let focus = this.pane.read(cx).has_focus(); cx.spawn(|_, mut cx| async move {
let editor = Box::new(cx.add_view(|cx| Assistant::new(cx))); let markdown = workspace
Pane::add_item(workspace, &this.pane, editor, true, focus, None, cx); .read_with(&cx, |workspace, _| {
}) workspace
} .app_state()
}); .languages
.language_for_name("Markdown")
})?
.await?;
workspace.update(&mut cx, |workspace, cx| {
let editor = Box::new(cx.add_view(|cx| {
Assistant::new(markdown, workspace.app_state().languages.clone(), cx)
}));
Pane::add_item(workspace, &pane, editor, true, focus, None, cx);
})?;
anyhow::Ok(())
})
.detach_and_log_err(cx);
} }
} }
@ -208,6 +234,8 @@ struct Assistant {
editor: ViewHandle<Editor>, editor: ViewHandle<Editor>,
completion_count: usize, completion_count: usize,
pending_completions: Vec<PendingCompletion>, pending_completions: Vec<PendingCompletion>,
markdown: Arc<Language>,
language_registry: Arc<LanguageRegistry>,
} }
struct PendingCompletion { struct PendingCompletion {
@ -216,37 +244,29 @@ struct PendingCompletion {
} }
impl Assistant { impl Assistant {
fn new(cx: &mut ViewContext<Self>) -> Self { fn new(
let messages = vec![Message { markdown: Arc<Language>,
role: Role::User, language_registry: Arc<LanguageRegistry>,
content: cx.add_model(|cx| Buffer::new(0, "", cx)), cx: &mut ViewContext<Self>,
}]; ) -> Self {
let multibuffer = cx.add_model(|cx| {
let mut multibuffer = MultiBuffer::new(0);
for message in &messages {
multibuffer.push_excerpts_with_context_lines(
message.content.clone(),
vec![Anchor::MIN..Anchor::MAX],
0,
cx,
);
}
multibuffer
});
let editor = cx.add_view(|cx| { let editor = cx.add_view(|cx| {
let multibuffer = cx.add_model(|_| MultiBuffer::new(0));
let mut editor = Editor::for_multibuffer(multibuffer, None, cx); let mut editor = Editor::for_multibuffer(multibuffer, None, cx);
editor.set_soft_wrap_mode(SoftWrap::EditorWidth, cx); editor.set_soft_wrap_mode(SoftWrap::EditorWidth, cx);
editor.set_show_gutter(false, cx); editor.set_show_gutter(false, cx);
editor editor
}); });
Self { let mut this = Self {
messages, messages: Default::default(),
editor, editor,
completion_count: 0, completion_count: 0,
pending_completions: Vec::new(), pending_completions: Vec::new(),
} markdown,
language_registry,
};
this.push_message(Role::User, cx);
this
} }
fn assist(&mut self, _: &Assist, cx: &mut ViewContext<Self>) { fn assist(&mut self, _: &Assist, cx: &mut ViewContext<Self>) {
@ -266,32 +286,8 @@ impl Assistant {
if let Some(api_key) = std::env::var("OPENAI_API_KEY").log_err() { if let Some(api_key) = std::env::var("OPENAI_API_KEY").log_err() {
let stream = stream_completion(api_key, cx.background_executor().clone(), request); let stream = stream_completion(api_key, cx.background_executor().clone(), request);
let response_buffer = cx.add_model(|cx| Buffer::new(0, "", cx)); let response_buffer = self.push_message(Role::Assistant, cx);
self.messages.push(Message { self.push_message(Role::User, cx);
role: Role::Assistant,
content: response_buffer.clone(),
});
let next_request_buffer = cx.add_model(|cx| Buffer::new(0, "", cx));
self.messages.push(Message {
role: Role::User,
content: next_request_buffer.clone(),
});
self.editor.update(cx, |editor, cx| {
editor.buffer().update(cx, |multibuffer, cx| {
multibuffer.push_excerpts_with_context_lines(
response_buffer.clone(),
vec![Anchor::MIN..Anchor::MAX],
0,
cx,
);
multibuffer.push_excerpts_with_context_lines(
next_request_buffer,
vec![Anchor::MIN..Anchor::MAX],
0,
cx,
);
});
});
let task = cx.spawn(|this, mut cx| { let task = cx.spawn(|this, mut cx| {
async move { async move {
let mut messages = stream.await?; let mut messages = stream.await?;
@ -330,6 +326,33 @@ impl Assistant {
cx.propagate_action(); cx.propagate_action();
} }
} }
fn push_message(&mut self, role: Role, cx: &mut ViewContext<Self>) -> ModelHandle<Buffer> {
let content = cx.add_model(|cx| {
let mut buffer = Buffer::new(0, "", cx);
buffer.set_language(Some(self.markdown.clone()), cx);
buffer.set_language_registry(self.language_registry.clone());
buffer
});
let message = Message {
role,
content: content.clone(),
};
self.messages.push(message);
self.editor.update(cx, |editor, cx| {
editor.buffer().update(cx, |buffer, cx| {
buffer.push_excerpts_with_context_lines(
content.clone(),
vec![Anchor::MIN..Anchor::MAX],
0,
cx,
)
});
});
content
}
} }
impl Entity for Assistant { impl Entity for Assistant {

View file

@ -340,7 +340,9 @@ pub fn initialize_workspace(
let project_panel = ProjectPanel::load(workspace_handle.clone(), cx.clone()); let project_panel = ProjectPanel::load(workspace_handle.clone(), cx.clone());
let terminal_panel = TerminalPanel::load(workspace_handle.clone(), cx.clone()); let terminal_panel = TerminalPanel::load(workspace_handle.clone(), cx.clone());
let (project_panel, terminal_panel) = futures::try_join!(project_panel, terminal_panel)?; let assistant_panel = AssistantPanel::load(workspace_handle.clone(), cx.clone());
let (project_panel, terminal_panel, assistant_panel) =
futures::try_join!(project_panel, terminal_panel, assistant_panel)?;
workspace_handle.update(&mut cx, |workspace, cx| { workspace_handle.update(&mut cx, |workspace, cx| {
let project_panel_position = project_panel.position(cx); let project_panel_position = project_panel.position(cx);
workspace.add_panel(project_panel, cx); workspace.add_panel(project_panel, cx);
@ -359,9 +361,6 @@ pub fn initialize_workspace(
} }
workspace.add_panel(terminal_panel, cx); workspace.add_panel(terminal_panel, cx);
// TODO: deserialize state.
let assistant_panel = cx.add_view(|cx| AssistantPanel::new(workspace, cx));
workspace.add_panel(assistant_panel, cx); workspace.add_panel(assistant_panel, cx);
})?; })?;
Ok(()) Ok(())