Skip to content

Commit 5929260

Browse files
Updated README and GIFs (#296)
1 parent 64cdfaa commit 5929260

24 files changed

+14
-140
lines changed

Diff for: README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,6 @@ bugs, suggestions, or feedback. If you would like to give more candid feedback a
169169
[01]: ./docs/CODE_OF_CONDUCT.md
170170
[02]: ./docs/CONTRIBUTING.md
171171
[03]: ./docs/development/CreatingAnAgent.md
172-
[04]: ./docs/media/AIShellDemo.gif
173172
[05]: ./docs/SUPPORT.md
174173
[06]: ./shell/agents/AIShell.Ollama.Agent/README.md
175174
[07]: ./shell/agents/AIShell.Interpreter.Agent/README.md
@@ -185,7 +184,7 @@ bugs, suggestions, or feedback. If you would like to give more candid feedback a
185184
[17]: https://learn.microsoft.com/powershell/utility-modules/aishell/how-to/agent-azure
186185
[18]: https://github.com/PowerShell/PowerShell/releases/tag/v7.4.6
187186
[19]: https://learn.microsoft.com/powershell/utility-modules/aishell/overview
188-
[20]: ./docs/media/standalone-startup.gif
189-
[21]: ./docs/media/aishellwithPowerShell.gif
187+
[20]: ./docs/media/DemoGIFs/standalone-startup.gif
188+
[21]: ./docs/media/DemoGIFs/azure-agent.gif
190189
[22]: https://aka.ms/AIShell-Feedback
191190
[logo]: ./docs/media/AIShellIconSVG.svg

Diff for: docs/GettingStarted.md

-134
This file was deleted.

Diff for: docs/media/AIShellDemo.gif

-508 KB
Binary file not shown.

Diff for: docs/media/AIShellPredictiveIntelliSenseDemo.gif

-2.11 MB
Binary file not shown.

Diff for: docs/media/AzureAgent.gif

-1.11 MB
Binary file not shown.

Diff for: docs/media/DemoGIFs/Invoke-AIShell.gif

1.01 MB
Loading

Diff for: docs/media/DemoGIFs/Resolve-error.gif

4.11 MB
Loading

Diff for: docs/media/DemoGIFs/azure-agent.gif

3.29 MB
Loading

Diff for: docs/media/DemoGIFs/insert-code.gif

413 KB
Loading

Diff for: docs/media/DemoGIFs/predictiveintellisensedemo.gif

1.3 MB
Loading
File renamed without changes.

Diff for: docs/media/DemoGIFs/start-aishell.gif

545 KB
Loading

Diff for: docs/media/DemoGIFs/switch-agents.gif

2.55 MB
Loading
File renamed without changes.
File renamed without changes.

Diff for: docs/media/InsertCode.gif

-368 KB
Binary file not shown.

Diff for: docs/media/InvokeAIShell.gif

-1.33 MB
Binary file not shown.

Diff for: docs/media/ResolveError.gif

-1.18 MB
Binary file not shown.

Diff for: docs/media/ShellIntegrationDemo.gif

-4.36 MB
Binary file not shown.

Diff for: docs/media/SwitchingAgents.gif

-1.17 MB
Binary file not shown.

Diff for: docs/media/aishellwithPowerShell.gif

-1.11 MB
Binary file not shown.

Diff for: docs/media/startAISHell.gif

-199 KB
Binary file not shown.

Diff for: shell/AIShell.Kernel/Shell.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ private void LoadAvailableAgents()
286286
chosenAgent ??= _agents.Count is 1
287287
? _agents[0]
288288
: Host.PromptForSelectionAsync(
289-
title: "Welcome to AIShell! We’re excited to have you explore our [bold]Public Preview[/]. Documentation is available at [link=https://aka.ms/AIShell-Docs]aka.ms/AIShell-Docs[/], and we’d love to hear your thoughts - share your feedback with us at [link=https://aka.ms/AIShell-Feedback]aka.ms/AIShell-Feedback[/].\n\n[orange1]Please select an AI [Blue]agent[/] to use[/]:\n[grey](You can switch to another agent later by typing [Blue]@<agent name>[/])[/]",
289+
title: "Welcome to AI Shell! We’re excited to have you explore our [bold]Public Preview[/]. Documentation is available at [link=https://aka.ms/AIShell-Docs]aka.ms/AIShell-Docs[/], and we’d love to hear your thoughts - share your feedback with us at [link=https://aka.ms/AIShell-Feedback]aka.ms/AIShell-Feedback[/].\n\n[orange1]Please select an AI [Blue]agent[/] to use[/]:\n[grey](You can switch to another agent later by typing [Blue]@<agent name>[/])[/]",
290290
choices: _agents,
291291
converter: static a => a.Impl.Name)
292292
.GetAwaiter().GetResult();

Diff for: shell/agents/Microsoft.Azure.Agent/README.md

+11-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Copilot in Azure Agent
22

3-
For more details about this agent please see, [Copilot in Azure Agent][01].
3+
This agent is designed to connect you to the [Copilot in Azure][03] experience directly from your command
4+
line. It provides assistance for Azure CLI commands, Azure PowerShell commands, and general Azure
5+
knowledge. To use this agent, you need to sign in to Azure using the az login command from Azure
6+
CLI. For more details about this agent please see, [Copilot in Azure Agent][01].
47

5-
[01]: https://learn.microsoft.com/powershell/utility-modules/aishell/how-to/agent-azure
8+
![Copilot in Azure Agent][02]
9+
10+
<!-- link references -->
11+
12+
[01]: https://learn.microsoft.com/powershell/utility-modules/aishell/how-to/agent-azure
13+
[02]: ../../../docs/media/DemoGIFs/azure-agent.gif
14+
[03]: https://azure.microsoft.com/products/copilot

0 commit comments

Comments
 (0)