Add chatParticipant contribution point (#206474)

* Add package.json registration for chat agents

* Update for tests

* Separate static and dynamic chat agent parts

* Handle participant registration correctly

* Fix tests

* Fix test

* Remove commented code

* Fix more tests

* Pluralize

* Pluralize test contribution
This commit is contained in:
Rob Lourens
2024-02-29 11:52:12 -03:00
committed by GitHub
parent 4e81df7ea9
commit 00abefa3e2
32 changed files with 477 additions and 356 deletions

View File

@@ -64,6 +64,19 @@
},
"icon": "media/icon.png",
"contributes": {
"chatParticipants": [
{
"name": "participant",
"description": "test",
"isDefault": true,
"commands": [
{
"name": "hello",
"description": "Hello"
}
]
}
],
"configuration": {
"type": "object",
"title": "Test Config",