Set markdown as the assistant's buffer languages
This commit is contained in:
parent
ffbfbe422b
commit
404bebab63
2 changed files with 135 additions and 113 deletions
|
@ -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,7 +38,14 @@ pub struct AssistantPanel {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl AssistantPanel {
|
impl AssistantPanel {
|
||||||
pub fn new(workspace: &Workspace, cx: &mut ViewContext<Self>) -> Self {
|
pub fn load(
|
||||||
|
workspace: WeakViewHandle<Workspace>,
|
||||||
|
cx: AsyncAppContext,
|
||||||
|
) -> Task<Result<ViewHandle<Self>>> {
|
||||||
|
cx.spawn(|mut cx| async move {
|
||||||
|
// TODO: deserialize state.
|
||||||
|
workspace.update(&mut cx, |workspace, cx| {
|
||||||
|
cx.add_view(|cx| {
|
||||||
let pane = cx.add_view(|cx| {
|
let pane = cx.add_view(|cx| {
|
||||||
let mut pane = Pane::new(
|
let mut pane = Pane::new(
|
||||||
workspace.weak_handle(),
|
workspace.weak_handle(),
|
||||||
|
@ -66,7 +73,10 @@ impl AssistantPanel {
|
||||||
} else {
|
} else {
|
||||||
"icons/maximize_8.svg"
|
"icons/maximize_8.svg"
|
||||||
},
|
},
|
||||||
Some(("Toggle Zoom".into(), Some(Box::new(workspace::ToggleZoom)))),
|
Some((
|
||||||
|
"Toggle Zoom".into(),
|
||||||
|
Some(Box::new(workspace::ToggleZoom)),
|
||||||
|
)),
|
||||||
cx,
|
cx,
|
||||||
move |pane, cx| pane.toggle_zoom(&Default::default(), cx),
|
move |pane, cx| pane.toggle_zoom(&Default::default(), cx),
|
||||||
None,
|
None,
|
||||||
|
@ -89,6 +99,9 @@ impl AssistantPanel {
|
||||||
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 {
|
||||||
|
|
|
@ -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(())
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue