Skip to content

Commit

Permalink
[Copilot] Add Autofill capability (#2407)
Browse files Browse the repository at this point in the history
#### Summary
Adds the autofill capability to the Copilot capabilities.

#### Work Item(s) 
Fixes
[AB#547921](https://dynamicssmb2.visualstudio.com/1fcb79e7-ab07-432a-a3c6-6cf5a88ba4a5/_workitems/edit/547921)
  • Loading branch information
msft-sam authored Nov 26, 2024
1 parent bc36899 commit e5fe655
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ codeunit 7760 "Copilot Capability Install"
ChatLearnMoreLbl: Label 'https://go.microsoft.com/fwlink/?linkid=2255821', Locked = true;
AnalyzeListLearnMoreLbl: Label 'https://go.microsoft.com/fwlink/?linkid=2252783', Locked = true;
SummarizeLearnMoreLbl: Label 'https://go.microsoft.com/fwlink/?linkid=2284702', Locked = true;
AutofillLearnMoreLbl: Label 'https://go.microsoft.com/fwlink/?linkid=2298223', Locked = true;

internal procedure RegisterCapabilities()
var
Expand All @@ -34,6 +35,7 @@ codeunit 7760 "Copilot Capability Install"

RegisterSaaSCapability(Enum::"Copilot Capability"::"Analyze List", Enum::"Copilot Availability"::Preview, AnalyzeListLearnMoreLbl);
RegisterSaaSCapability(Enum::"Copilot Capability"::Summarize, Enum::"Copilot Availability"::Preview, SummarizeLearnMoreLbl);
RegisterSaaSCapability(Enum::"Copilot Capability"::Autofill, Enum::"Copilot Availability"::Preview, AutofillLearnMoreLbl);
end;

local procedure RegisterSaaSCapability(Capability: Enum "Copilot Capability"; Availability: Enum "Copilot Availability"; LearnMoreUrl: Text[2048])
Expand Down

0 comments on commit e5fe655

Please sign in to comment.