From 7814be7ac0bbb90273d313b2ddf4ddeb1b150c48 Mon Sep 17 00:00:00 2001 From: robgruen Date: Thu, 18 Dec 2025 18:34:54 -0800 Subject: [PATCH] Add code example for Calendar Actions translation Added code example for translating user intent into Calendar Actions. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index e487857b..0558c25a 100644 --- a/README.md +++ b/README.md @@ -6,12 +6,14 @@ TypeChat.NET brings the ideas of [TypeChat](https://github.com/microsoft/TypeCha TypeChat.NET provides **cross platform** libraries that help you build natural language interfaces with language models using strong types, type validation and simple type safe programs (plans). Strong typing may help make software that uses language models more deterministic and reliable. ```cs + // Translates user intent into strongly typed Calendar Actions var model = new LanguageModel(Config.LoadOpenAI()); var translator = new JsonTranslator(model); // Translate natural language request CalendarActions actions = await translator.TranslateAsync(requestText); + ``` TypeChat.NET is in **active development** with frequent updates. The framework will evolve as the team explores the space and incorporates feedback. Supported scenarios are shown in the included [Examples](./examples). Documentation will also continue to improve. When in doubt, please look at the code.