Use tool calling instead of XML parsing to generate edit operations (#15385)
Release Notes: - N/A --------- Co-authored-by: Nathan <nathan@zed.dev>
This commit is contained in:
parent
f6012cd86e
commit
6e1f7c6e1d
22 changed files with 1155 additions and 853 deletions
|
@ -294,8 +294,12 @@ messages!(
|
|||
(PrepareRename, Background),
|
||||
(PrepareRenameResponse, Background),
|
||||
(ProjectEntryResponse, Foreground),
|
||||
(QueryLanguageModel, Background),
|
||||
(QueryLanguageModelResponse, Background),
|
||||
(CompleteWithLanguageModel, Background),
|
||||
(CompleteWithLanguageModelResponse, Background),
|
||||
(StreamCompleteWithLanguageModel, Background),
|
||||
(StreamCompleteWithLanguageModelResponse, Background),
|
||||
(CountLanguageModelTokens, Background),
|
||||
(CountLanguageModelTokensResponse, Background),
|
||||
(RefreshInlayHints, Foreground),
|
||||
(RejoinChannelBuffers, Foreground),
|
||||
(RejoinChannelBuffersResponse, Foreground),
|
||||
|
@ -463,7 +467,12 @@ request_messages!(
|
|||
(PerformRename, PerformRenameResponse),
|
||||
(Ping, Ack),
|
||||
(PrepareRename, PrepareRenameResponse),
|
||||
(QueryLanguageModel, QueryLanguageModelResponse),
|
||||
(CompleteWithLanguageModel, CompleteWithLanguageModelResponse),
|
||||
(
|
||||
StreamCompleteWithLanguageModel,
|
||||
StreamCompleteWithLanguageModelResponse
|
||||
),
|
||||
(CountLanguageModelTokens, CountLanguageModelTokensResponse),
|
||||
(RefreshInlayHints, Ack),
|
||||
(RejoinChannelBuffers, RejoinChannelBuffersResponse),
|
||||
(RejoinRoom, RejoinRoomResponse),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue