├── ISSUE_TEMPLATE.md ├── README.md └── legacy-app-migration.md /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | **Do you want to request a *feature*, report a *bug*, or ask a *question* about wit?** 2 | 3 | **What is the current behavior?** 4 | 5 | **If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem.** 6 | 7 | **What is the expected behavior?** 8 | 9 | **If applicable, what is the App ID where you are experiencing this issue? If you do not provide this, we cannot help.** 10 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Wit.ai 2 | 3 | ![logo](https://i.imgur.com/zqNZb3z.png) 4 | 5 | Wit.ai makes it easy for developers to build applications and devices that you can talk or text to. 6 | 7 | ## Documentation 8 | https://wit.ai/docs 9 | 10 | ## Latest updates 11 | https://wit.ai/blog 12 | 13 | Welcome to Wit.ai's issue tracker. If you have issues with your app, wish to request a feature, or just talk about wit, you can ask by opening an issue here 14 | -------------------------------------------------------------------------------- /legacy-app-migration.md: -------------------------------------------------------------------------------- 1 | # Legacy app deprecation 2 | We're looking to deprecate legacy apps, which are apps created before May 2016 that have tight coupling between intent and entity. If your app looks like this, it applies to you: 3 | ![](https://i.imgur.com/clvobm6.png) 4 | Context: https://medium.com/wit-ai/launching-built-in-nlp-for-messenger-and-sunsetting-bot-engine-beta-46e9038869a5. 5 | 6 | ## How to migrate your app 7 | 1. Create a new app, it will by default be in the new app format 8 | 2. An `intent` trait entity will be created for you. Each of your legacy app intents will map to an intent value in the `intent` entity. Reference: https://wit.ai/docs/recipes#categorize-the-user-intent 9 | 10 | Legacy: 11 | ![](https://i.imgur.com/2rS01RR.png) 12 | New: 13 | ![](https://i.imgur.com/jA2CRcm.png) 14 | 15 | 3. Free-text and keyword entities work in the same way as before, but they no longer are tied to specific intents. Reference: https://wit.ai/docs/recipes#which-entity-should-you-use 16 | 4. Start validating some samples! 17 | --------------------------------------------------------------------------------