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
4 changes: 2 additions & 2 deletions shell/AIShell.Integration/AIShell.Integration.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@

<ItemGroup>
<Content Include="AIShell.psd1;AIShell.psm1">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<CopyToPublishDirectory>Always</CopyToPublishDirectory>
</Content>
</ItemGroup>

Expand Down
1 change: 1 addition & 0 deletions shell/agents/Microsoft.Azure.Agent/AzureAgent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ public async Task<bool> ChatAsync(string input, IShell shell)
string query = $"{input}\n\n---\n\n{_instructions}";
CopilotResponse copilotResponse = await host.RunWithSpinnerAsync(
status: "Thinking ...",
spinnerKind: SpinnerKind.Processing,
func: async context => await _chatSession.GetChatResponseAsync(query, context, token)
).ConfigureAwait(false);

Expand Down