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
2 changes: 2 additions & 0 deletions .github/workflows/dotnet-build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,8 @@ jobs:
OpenAITextToAudio__ModelId: ${{ vars.OPENAITEXTTOAUDIO__MODELID }}
OpenAIAudioToText__ApiKey: ${{ secrets.OPENAIAUDIOTOTEXT__APIKEY }}
OpenAIAudioToText__ModelId: ${{ vars.OPENAIAUDIOTOTEXT__MODELID }}
OpenAITextToImage__ApiKey: ${{ secrets.OPENAITEXTTOIMAGE__APIKEY }}
OpenAITextToImage__ModelId: ${{ vars.OPENAITEXTTOIMAGE__MODELID }}
AzureOpenAITextToAudio__ApiKey: ${{ secrets.AZUREOPENAITEXTTOAUDIO__APIKEY }}
AzureOpenAITextToAudio__Endpoint: ${{ secrets.AZUREOPENAITEXTTOAUDIO__ENDPOINT }}
AzureOpenAITextToAudio__DeploymentName: ${{ vars.AZUREOPENAITEXTTOAUDIO__DEPLOYMENTNAME }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace SemanticKernel.IntegrationTests.Planners.Handlebars;

public sealed class HandlebarsPlannerTests
{
[Theory]
[Theory(Skip = "This test is for manual verification.")]
[InlineData("Write a joke and send it in an e-mail to Kai.", "SendEmail", "test")]
public async Task CreatePlanFunctionFlowAsync(string goal, string expectedFunction, string expectedPlugin)
{
Expand All @@ -37,7 +37,7 @@ public async Task CreatePlanFunctionFlowAsync(string goal, string expectedFuncti
);
}

[RetryTheory]
[RetryTheory(Skip = "This test is for manual verification.")]
[InlineData("Write a novel about software development that is 3 chapters long.", "NovelChapter", "WriterPlugin")]
public async Task CreatePlanWithDefaultsAsync(string goal, string expectedFunction, string expectedPlugin)
{
Expand All @@ -56,7 +56,7 @@ public async Task CreatePlanWithDefaultsAsync(string goal, string expectedFuncti
);
}

[Theory]
[Theory(Skip = "This test is for manual verification.")]
[InlineData("List each property of the default Qux object.", "## Complex types", """
### Qux:
{
Expand Down
4 changes: 4 additions & 0 deletions dotnet/src/IntegrationTests/testsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@
"Endpoint": "",
"ApiKey": ""
},
"OpenAITextToImage": {
"ModelId": "dall-e-2",
"ApiKey": ""
},
"AzureOpenAITextToImage": {
"ServiceId": "azure-dalle3",
"DeploymentName": "dall-e-3",
Expand Down