Skip to content

Commit

Permalink
Updated System.Text.Json to latest version, and Readme (#159)
Browse files Browse the repository at this point in the history
In this PR
- Bump System.Text.Json dependency to latest version
- Updated Readme for TypeChat.Dialog
  • Loading branch information
umeshma authored Sep 28, 2023
1 parent 197bb9c commit f5b9dbd
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ TypeChat.SemanticKernel include classes for:
* Language model and embeddings access: all TypeChat examples use the Semantic Kernel to call models and generate embeddings.

## Microsoft.TypeChat.Dialog
TypeChat.Dialog demonstrates how TypeChat.NET may be used for strongly typed interactions with message passing Agents or Bots. These agents can include features such as built in interaction history.
TypeChat.Dialog is an **early** version of a framework that demonstrates how TypeChat.NET may be used for strongly typed interactions with message passing Agents or Bots. These agents can include features such as built in interaction history.

```
// Create an agent with history
Expand Down
4 changes: 2 additions & 2 deletions src/package/NUGET.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# TypeChat
# TypeChat.NET

TypeChat.NET brings the ideas of [TypeChat](https://github.com/microsoft/TypeChat) to .NET.
[TypeChat.NET](https://github.com/microsoft/typechat.net) brings the ideas of [TypeChat](https://github.com/microsoft/TypeChat) to .NET.

TypeChat.NET provides **cross platform** libraries that help you build natural language interfaces with language models using strong types and type validation. TypeChat provides:
* Json Translation and validation.
Expand Down
15 changes: 6 additions & 9 deletions src/typechat.dialog/Readme.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
# Typechat.Dialog
TypeChat.Dialog is an **early** version of framework desiged for strongly typed interactions with Agents with built in interaction history and other features.
# TypeChat.Dialog
TypeChat.Dialog is an **early** version of a framework that demonstrates how TypeChat.NET may be used for strongly typed interactions with message passing Agents or Bots. These agents can include features such as built in interaction history.

* Agents pass messages to each other.
* Agents work with models to process user requests

The framework also includes classes for:
* Maintaining message history
* Text classification
* Building token limited prompts
TypeChat.Dialog includes classes and interfaces for:
* Agents
* Messages and message history.
* Collecting relevant context that remains within character/token limits.
2 changes: 1 addition & 1 deletion src/typechat/TypeChat.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<ItemGroup>
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
<PackageReference Include="System.Text.Json" Version="6.0.1" />
<PackageReference Include="System.Text.Json" Version="6.0.8" />
</ItemGroup>

</Project>

0 comments on commit f5b9dbd

Please sign in to comment.