Skip to content
Merged
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
3 changes: 2 additions & 1 deletion shell/agents/Microsoft.Azure.Agent/AzureAgent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public AzureAgent()
_valueStore = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
_instructions = string.Format(InstructionPrompt, Environment.OSVersion.VersionString);

Name = "Azure";
Name = "azure";
Company = "Microsoft";
Description = "This AI assistant can generate Azure CLI and Azure PowerShell commands for managing Azure resources, answer questions, and provides information tailored to your specific Azure environment.";

Expand Down Expand Up @@ -132,6 +132,7 @@ public async Task RefreshChatAsync(IShell shell, bool force)

if (!string.IsNullOrEmpty(welcome))
{
_turnsLeft = int.MaxValue;
host.WriteLine(welcome);
}
}
Expand Down