File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
shell/agents/Microsoft.Azure.Agent Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -56,9 +56,9 @@ internal ChatSession(HttpClient httpClient)
56
56
[ "getformstate" ] = true ,
57
57
[ "notificationcopilotbuttonallerror" ] = false ,
58
58
[ "chitchatprompt" ] = true ,
59
+ [ "azurepluginstore" ] = true ,
59
60
// TODO: the streaming is slow and not sending chunks, very clumsy for now.
60
61
// ["streamresponse"] = true,
61
- // ["azurepluginstore"] = true,
62
62
} ;
63
63
}
64
64
@@ -239,6 +239,11 @@ private HttpRequestMessage PrepareForChat(string input)
239
239
content = new {
240
240
flights = _flights
241
241
}
242
+ } ,
243
+ new {
244
+ contentType = Utils . JsonContentType ,
245
+ name = "azurecopilot/authorization" ,
246
+ content = $ "Bearer { _accessToken . Token } "
242
247
}
243
248
} ,
244
249
} ;
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ internal class CopilotActivity
120
120
{
121
121
public const string ConversationStateName = "azurecopilot/conversationstate" ;
122
122
public const string SuggestedResponseName = "azurecopilot/suggesteduserresponses" ;
123
- public const string CLIHandlerTopic = "CLIHandler " ;
123
+ public const string CLIHandlerTopic = "generate_azure_cli_scripts " ;
124
124
125
125
public string Type { get ; set ; }
126
126
public string Id { get ; set ; }
You can’t perform that action at this time.
0 commit comments