diff --git a/README.md b/README.md
index e19b25f..7109b20 100644
--- a/README.md
+++ b/README.md
@@ -17,19 +17,11 @@ A small AI application containing [Angular 5](https://angular.io), [Material](ht
* Dialogflow AI
* Chatbot
-## Example sentences
-* Can you get smarter?
-* You're boring
-* Who is your boss?
-* You are funny
-* Are we friends?
-* I'll be back
-* You're wrong
-* Nice to see you!
-* What's up?
-* I don't want to talk
-* Today is my birthday
-* I need an advice
+## Sentences
+[A couple of example sentences to get you start talking](https://github.com/jeroenouw/AngularAI/blob/master/docs/SENTENCES.md)
+
+## Developing
+[Quick starting and development](https://github.com/jeroenouw/AngularAI/blob/master/docs/DEVELOPING.md)
## Contributing
Want to file a bug, contribute some code, or improve documentation? Feel free to place an [issue](https://github.com/jeroenouw/AngularAI/issues).
diff --git a/docs/DEVELOPING.md b/docs/DEVELOPING.md
new file mode 100644
index 0000000..d7e54f6
--- /dev/null
+++ b/docs/DEVELOPING.md
@@ -0,0 +1,35 @@
+## Quick start
+First clone this repo: `git clone https://github.com/jeroenouw/AngularAI.git`.
+Change directory to this project
+Run `npm install` to install all the dependencies.
+Run `npm start` to run this project. This will run with the AoT Compiler.
+Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.
+
+## Development
+For own projects please use different token `src/environment/environment.prod.ts` and `src/environment/environment.ts`:
+``` dialogflow: { ```
+``` [CHOOSE_A_NAME]': '[YOUR_TOKEN]' ```
+``` }```
+
+Run `npm start` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.
+
+To build the development environment, run `npm run dist`.
+
+## Production
+To build the default production environment, run `npm run prod`. This will run with the AoT Compiler.
+To build the production environment with reduced file size, run `npm run prod:opt` (Takes extra time to build with build optimizer).
+
+## Speech Options
+Available speech recognition options in `src/app/service/ai.service.ts`
+
+Choose if the API needs to look for further words:
+`this.speechRecognition.continuous = false;`
+
+Show interim results or just final results:
+`this.speechRecognition.interimResults = false;`
+
+Select your speech language:
+`this.speechRecognition.lang = 'en-us';`
+
+Choose the quantity of alternative available matches:
+`this.speechRecognition.maxAlternatives = 0;`
\ No newline at end of file
diff --git a/docs/SENTENCES.md b/docs/SENTENCES.md
new file mode 100644
index 0000000..08a96e3
--- /dev/null
+++ b/docs/SENTENCES.md
@@ -0,0 +1,13 @@
+## Example sentences
+* Can you get smarter?
+* You're boring
+* Who is your boss?
+* You are funny
+* Are we friends?
+* I'll be back
+* You're wrong
+* Nice to see you!
+* What's up?
+* I don't want to talk
+* Today is my birthday
+* I need an advice
diff --git a/package-lock.json b/package-lock.json
index bb740b4..f990c7c 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,6 +1,6 @@
{
"name": "ngx-ai",
- "version": "1.0.0",
+ "version": "1.0.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
diff --git a/package.json b/package.json
index ae4c2ca..2084dd5 100644
--- a/package.json
+++ b/package.json
@@ -1,11 +1,12 @@
{
"name": "ngx-ai",
- "version": "1.0.1",
+ "version": "1.0.2",
"author": "Jeroen Ouwehand",
"description": "Angular 5 AI",
"keywords": [
"angular",
"dialogflow",
+ "web speech api",
"google",
"material",
"chatbot",
diff --git a/src/app/components/ai/ai.component.html b/src/app/components/ai/ai.component.html
index b24c7cd..a613e11 100644
--- a/src/app/components/ai/ai.component.html
+++ b/src/app/components/ai/ai.component.html
@@ -9,12 +9,19 @@