-
Notifications
You must be signed in to change notification settings - Fork 3.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Existing Chat-Sample based application is broken with version 1.90 (non-insiders build) #1048
Comments
To add more details, when developing extension on vscode v1.89.0, we added 2 proposed API files: But the source files of these 2 proposed APIs are now unavailable: Even if we kept these 2 source files in our code, they don't work any more after vscode upgraded from 1.89 to 1.90. Are there new APIs for copilot chat in v1.90 ? |
Find a possible solution: adding "chatParticipantPrivate" into the "enabledApiProposals" in package.json for VSCode >= 1.90 |
I'm also experiencing this issue. Does anyone know why the @participants have disappeared? Is this feature not ready for publishing yet? I might have missed it, but the documentation doesn't clearly state that this feature is still in preview, if that's the case. Previously, the documentation mentioned to set a requirement for VSCode 1.90, which wasn't released yet and was only available through VSCode Insiders. I expected it to be available when 1.90 was released. |
It seemed to just go even more broken now with even insider giving errors... I hope someone is looking into that |
Sorry about the slow response here. @erlingto @DinahK-2SO @animeshj9 can you reproduce your issue with VS Code Insiders? If not - it is expected for VS Code Stable to silently ignore the participant contributions until the next stable release (first week of July). I apologize if this was not communicated clearly. @bararchy can you provide those errors you are seeing now? The chat sample works fine for me with latest insiders. Might you have been hitting this issue that is now fixed microsoft/vscode#216477 Also whenever you create an issue for Chat and Language Model APIs feel free to ping me @isidorn on it. |
upgraded to 1.9 and now it says "No chat models available" |
@McNickSisto are you on latest VS Code Insiders and latest Copilot Chat pre-release? If yes and you still see this, are you using the vanilla chat sample? |
@isidorn yeha you were right, it seems my issue was indeed the one you linked to. Sorry about it |
No worries. That was an unexpected breakage - sorry! Let's see if there is an issue that @McNickSisto is facing. If not, I will go ahead and close this issue. |
@isidorn I checked again, I was in release version, i then switched to pre-release but I encountered the same error when calling the api. using the following |
@isidorn just realized I am not on VS Code Insiders, my bad. I should expect the changes to be ready by the first week of July then ? |
Yes. Or you can use VS Code Insiders today. |
Extension sample
chat-sample
VS Code version
1.90.0
What went wrong?
We had a working chat-sample based extension on v1.89.0 on the main version of VSCode. Updating VSCode to 1.90 breaks the sample. The '@' command does not show up anymore with version 1.90.0.
Additionally, we used to add "enable-proposed-api": <our_extension_id> to the users argsv.json file on the users vscode to automatically enable the proposed API after getting confirmation from the user. That flow is also broken now.
The text was updated successfully, but these errors were encountered: