https://github.com/yucked/witty
⚗️ - .NET wrapper for Wit.ai. Targets .NET Standard 2.0.
https://github.com/yucked/witty
csharp dotnet netstandard wit-ai wit-api witai wrapper
Last synced: 10 months ago
JSON representation
⚗️ - .NET wrapper for Wit.ai. Targets .NET Standard 2.0.
- Host: GitHub
- URL: https://github.com/yucked/witty
- Owner: Yucked
- License: other
- Created: 2018-06-09T03:40:02.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2024-01-27T03:42:31.000Z (over 2 years ago)
- Last Synced: 2025-07-20T15:47:11.368Z (10 months ago)
- Topics: csharp, dotnet, netstandard, wit-ai, wit-api, witai, wrapper
- Language: C#
- Homepage: https://www.nuget.org/packages/WitSharp
- Size: 70.3 KB
- Stars: 5
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
WitSharp
> Usage
**Creating new application:**
```cs
var Client = new WitClient("MY-APPLICATION-TOKEN");
var Create = await Client.Application.CreateAsync("WitSharp", Language.EN, true).ConfigureAwait(false);
Console.WriteLine(Create.AppId);
```
**Getting sentence meaning:**
```cs
var Meaning = Client.Training.SentenceMeaningAsync(new SentenceModel {
Message = "How many people between monday and friday>",
MaxTraits = 4
}).ConfigureAwait(false);
Console.WriteLine(Meaning.Entities.Intents.FirstOrDefault().Value);
```
