Skip to content

Commit

Permalink
fix index profile name
Browse files Browse the repository at this point in the history
  • Loading branch information
alistar-andrei committed May 24, 2024
1 parent 1dd2a42 commit ca26baf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class Example0011_KnowledgeManagementAgentWithSemanticKernel : BaseTest,
private readonly IAgentConversationTestService _agentConversationTestService;

private string textEmbeddingProfileName = "text_embedding_profile_generic";
private string indexingProfileName = "indexing_profile_dune";
private string indexingProfileName = "indexing_profile_sdzwa";

public Example0011_KnowledgeManagementAgentWithSemanticKernel(ITestOutputHelper output, TestFixture fixture)
: base(output, fixture.ServiceProvider)
Expand Down Expand Up @@ -42,7 +42,7 @@ private async Task RunExampleAsync()
WriteLine($"Send questions to the {agentName} agent.");

var response = await _agentConversationTestService.RunAgentConversationWithSession(
agentName, userPrompts, null, true);
agentName, userPrompts, null, true, indexingProfileName, textEmbeddingProfileName);

WriteLine($"Agent conversation history:");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class Example0012_KnowledgeManagementAgentWithLangChain : BaseTest, IClas
private readonly IAgentConversationTestService _agentConversationTestService;

private string textEmbeddingProfileName = "text_embedding_profile_generic";
private string indexingProfileName = "indexing_profile_dune";
private string indexingProfileName = "indexing_profile_sdzwa";

public Example0012_KnowledgeManagementAgentWithLangChain(ITestOutputHelper output, TestFixture fixture)
: base(output, fixture.ServiceProvider)
Expand Down

0 comments on commit ca26baf

Please sign in to comment.