Skip to content

Commit 96e5a3e

Browse files
committedSep 26, 2024
changelog
1 parent 81fba54 commit 96e5a3e

File tree

3 files changed

+7
-2
lines changed
  • samples/semantickernel-concepts/semantickernel-syntax-examples/src/main/java/com/microsoft/semantickernel/samples/syntaxexamples

3 files changed

+7
-2
lines changed
 

‎CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
- Upgraded to openai sdk 1.0.0-beta.11
55
- Added convenience method `FunctionInvocation.withResultTypeAutoConversion` which sets the return type and registers a
66
type converter based on Jackson for the return type.
7+
- Added localization support for error/debug messages
78

89
### Bug Fixes
910

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ in a different direction, but also to consider the impact on the larger ecosyste
5050
To learn more and get started:
5151

5252
- Read the [documentation](https://learn.microsoft.com/en-us/semantic-kernel/overview/?tabs=Java&pivots=programming-language-java)
53-
- Learn how to [contribute](https://learn.microsoft.com/en-us/semantic-kernel/get-started/contributing?tabs=Java&pivots=programming-language-java) to the project
53+
- Learn how to [contribute](https://learn.microsoft.com/en-us/semantic-kernel/support/contributing?tabs=Java&pivots=programming-language-java) to the project
5454
- Join the [Discord community](https://aka.ms/SKDiscord)
5555
- Attend [regular office hours and SK community events](COMMUNITY.md)
5656
- Follow the team on our [blog](https://aka.ms/sk/blog)

‎samples/semantickernel-concepts/semantickernel-syntax-examples/src/main/java/com/microsoft/semantickernel/samples/syntaxexamples/RunAll.java

+5-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
import com.microsoft.semantickernel.samples.syntaxexamples.chatcompletion.Example33_Chat;
77
import com.microsoft.semantickernel.samples.syntaxexamples.chatcompletion.Example44_MultiChatCompletion;
88
import com.microsoft.semantickernel.samples.syntaxexamples.chatcompletion.Example63_ChatCompletionPrompts;
9+
import com.microsoft.semantickernel.samples.syntaxexamples.chatcompletion.responseschema.Example_ChatWithResponseFormat;
10+
import com.microsoft.semantickernel.samples.syntaxexamples.chatcompletion.responseschema.Example_ChatWithResponseFormatToolCall;
911
import com.microsoft.semantickernel.samples.syntaxexamples.configuration.Example08_RetryHandler;
1012
import com.microsoft.semantickernel.samples.syntaxexamples.configuration.Example41_HttpClientUsage;
1113
import com.microsoft.semantickernel.samples.syntaxexamples.configuration.Example58_ConfigureExecutionSettings;
@@ -66,7 +68,9 @@ public static void main(String[] args) {
6668
Example63_ChatCompletionPrompts::main,
6769
Example64_MultiplePromptTemplates::main,
6870
Example69_MutableKernelPlugin::main,
69-
KernelFunctionYaml_Example::main);
71+
KernelFunctionYaml_Example::main,
72+
Example_ChatWithResponseFormat::main,
73+
Example_ChatWithResponseFormatToolCall::main);
7074

7175
Scanner scanner = new Scanner(System.in);
7276
mains.forEach(mainMethod -> {

0 commit comments

Comments
 (0)