Skip to content

Commit

Permalink
Restructure
Browse files Browse the repository at this point in the history
  • Loading branch information
crickman committed Jan 27, 2025
1 parent 4d7f1e9 commit 112780c
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace GettingStarted;
/// This example demonstrates similarity between using <see cref="AzureAIAgent"/>
/// and <see cref="ChatCompletionAgent"/> (see: Step 2).
/// </summary>
public class Step12_Azure(ITestOutputHelper output) : BaseAgentsTest(output)
public class Step01_AzureAIAgent(ITestOutputHelper output) : BaseAgentsTest(output)
{
private const string HostName = "Host";
private const string HostInstructions = "Answer questions about the menu.";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace GettingStarted;
/// that inform how chat proceeds with regards to: Agent selection, chat continuation, and maximum
/// number of agent interactions.
/// </summary>
public class Step13_Azure_Chat(ITestOutputHelper output) : BaseAgentsTest(output)
public class Step02_AzureAIAgent_Chat(ITestOutputHelper output) : BaseAgentsTest(output)
{
private const string ReviewerName = "ArtDirector";
private const string ReviewerInstructions =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace GettingStarted;
/// <summary>
/// Demonstrate using code-interpreter on <see cref="AzureAIAgent"/> .
/// </summary>
public class Step14_AzureTool_CodeInterpreter(ITestOutputHelper output) : BaseAgentsTest(output)
public class Step03_AzureAIAgent_CodeInterpreter(ITestOutputHelper output) : BaseAgentsTest(output)
{
[Fact]
public async Task UseCodeInterpreterToolWithAgentAsync()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace GettingStarted;
/// <summary>
/// Demonstrate using code-interpreter on <see cref="AzureAIAgent"/> .
/// </summary>
public class Step15_AzureTool_FileSearch(ITestOutputHelper output) : BaseAgentsTest(output)
public class Step04_AzureAIAgent_FileSearch(ITestOutputHelper output) : BaseAgentsTest(output)
{
[Fact]
public async Task UseFileSearchToolWithAgentAsync()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespace GettingStarted;
/// Note: Open API invocation does not involve kernel function calling or kernel filters.
/// Azure Function invocation is managed entirely by the Azure AI Agent service.
/// </remarks>
public class Step16_Azure_OpenAPI(ITestOutputHelper output) : BaseAgentsTest(output)
public class Step05_AzureAIAgent_OpenAPI(ITestOutputHelper output) : BaseAgentsTest(output)
{
[Fact]
public async Task UseOpenAPIToolWithAgentAsync()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace GettingStarted;
/// This example demonstrates similarity between using <see cref="OpenAIAssistantAgent"/>
/// and <see cref="ChatCompletionAgent"/> (see: Step 2).
/// </summary>
public class Step08_Assistant(ITestOutputHelper output) : BaseAgentsTest(output)
public class Step01_Assistant(ITestOutputHelper output) : BaseAgentsTest(output)
{
private const string HostName = "Host";
private const string HostInstructions = "Answer questions about the menu.";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace GettingStarted;
/// <summary>
/// Demonstrate providing image input to <see cref="OpenAIAssistantAgent"/> .
/// </summary>
public class Step09_Assistant_Vision(ITestOutputHelper output) : BaseAgentsTest(output)
public class Step02_Assistant_Vision(ITestOutputHelper output) : BaseAgentsTest(output)
{
/// <summary>
/// Azure currently only supports message of type=text.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace GettingStarted;
/// <summary>
/// Demonstrate using code-interpreter on <see cref="OpenAIAssistantAgent"/> .
/// </summary>
public class Step10_AssistantTool_CodeInterpreter(ITestOutputHelper output) : BaseAgentsTest(output)
public class Step03_AssistantTool_CodeInterpreter(ITestOutputHelper output) : BaseAgentsTest(output)
{
[Fact]
public async Task UseCodeInterpreterToolWithAssistantAgentAsync()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace GettingStarted;
/// <summary>
/// Demonstrate using code-interpreter on <see cref="OpenAIAssistantAgent"/> .
/// </summary>
public class Step11_AssistantTool_FileSearch(ITestOutputHelper output) : BaseAgentsTest(output)
public class Step04_AssistantTool_FileSearch(ITestOutputHelper output) : BaseAgentsTest(output)
{
[Fact]
public async Task UseFileSearchToolWithAssistantAgentAsync()
Expand Down

0 comments on commit 112780c

Please sign in to comment.