> For the complete documentation index, see [llms.txt](https://theiotlearninginitiative.gitbook.io/embedded-linux/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://theiotlearninginitiative.gitbook.io/embedded-linux/application-development/artificial-intelligence/witai.md).

# WitAi

> Natural Language for Developers. [Homepage](https://wit.ai/)
>
> Today, thanks to companies like Wit.ai, even kids at hackathons are showing off weekend projects that are voice-controlled. Venturebeat

* [Alex Lebrun, Wit Ai](https://www.youtube.com/watch?v=vATExKGuPTY)

## Components

* Bots
* Mobile apps
* Home automation
* Wearable devices
* Robots

## Laboratory

* Go to [wit.ai](https://wit.ai/)
  * Sign up / Log in
  * Create a New App (+)
    * Name: TheIoTLearningInitiative
    * Description: The IoT Learning Initiative
    * Language: Spanish
    * Open Your data will be open to the community
    * * Create App

> Bot says...
>
> > If your bot is ready to send a direct response (like "Hello!") to the user, click on Bot Says.
>
> Bot executes...
>
> > If your bot needs to perform an action on the context ...

```bash
root@edison:~# pip install wit
```

```bash
root@edison:~# cd
root@edison:~# git clone https://github.com/wit-ai/pywit.git
Cloning into 'pywit'...
remote: Counting objects: 230, done.
remote: Total 230 (delta 0), reused 0 (delta 0), pack-reused 230
Receiving objects: 100% (230/230), 45.47 KiB | 0 bytes/s, done.
Resolving deltas: 100% (109/109), done.
Checking connectivity... done.
root@edison:~# cd pywit/
root@edison:~/pywit# ls
CHANGES.md  LICENSE  README.md  examples  setup.py  wit
root@edison:~/pywit#
```
