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
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,9 @@ program.Run(api);
TypeChat.SemanticKernel include classes for:
* **Json Programs for Plugins**: turn registered plugins into **APIs** that Json programs can target. See the [Plugins Example](examples/Plugins/Program.cs).
* Language model and embeddings access using Semantic Kernel.


TypeChat.SemanticKernel currently uses a pre-release version of Semantic Kernel. An upgrade to Semantic Kernel V1.0 is in progress in the [sk_upgrade branch](https://github.com/microsoft/typechat.net/tree/umeshma/sk_upgrade).

# Getting Started

## Prerequisite: OpenAI
Expand Down
2 changes: 1 addition & 1 deletion tests/TypeChat.IntegrationTests/TestEndToEnd.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public async Task Translate_Polymorphic()

var translator = new JsonTranslator<Drawing>(new ChatLanguageModel(_config.OpenAI));
string request = "Add a circle of radius 4.5 at 30, 30 and\n" +
"Add a retangle at 5, 5 with height 10 and width 15";
"Add a rectangle at 5, 5 with height 10 and width 15";

var canvas = await translator.TranslateAsync(request);
Assert.True(canvas.Shapes.Length == 2);
Expand Down