Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions copilot/js/api/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,16 @@ export interface ResolveRequest {
* After the time budget runs out, the request will be cancelled via the CancellationToken.
* Providers can use this value as a hint when computing context. Providers should expect the
* request to be cancelled once the time budget runs out.
*
* @deprecated Use `timeoutEnd` instead.
*/
timeBudget: number;

/**
* Unix timestamp representing the exact time the request will be cancelled via the CancellationToken.
*/
timeoutEnd: number;

/**
* Various statistics about the last completion request. This can be used by the context provider
* to make decisions about what context to provide for the current call.
Expand Down
915 changes: 484 additions & 431 deletions copilot/js/main.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions copilot/js/main.js.map

Large diffs are not rendered by default.

Binary file added copilot/js/tree-sitter-cpp.wasm
Binary file not shown.
2 changes: 1 addition & 1 deletion lua/copilot/util.lua
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function M.get_editor_info()
editorPluginInfo = {
name = "copilot.lua",
-- reflects version of github/copilot-language-server-release
version = "1.323.0",
version = "1.324.0",
},
}
return info
Expand Down