## Blog post on "Integration Rasa with Knowledge Bases"
Knowledge base actions are much helpful. Thanks.

## Custom Action with Weather API Code

```python
from rasa_sdk import Action
from rasa_sdk.events import SlotSet
import requests
import json

class ActionCheckWeather(Action):
    def name(self):
        return "action_check_api"

def run(self, dispatcher,…
```

## Failing to Install RASA on Windows 7
Please verify the module requirement versions whether it is compatible; if not, try to install the module separately by mentioning the version also.

## Voice Integration
Hi, you can see it [Going beyond ‘Hey Google’: building a Rasa-powered Google Assistant](https://blog.rasa.com/going-beyond-hey-google-building-a-rasa-powered-google-assistant/) blog by [@Juste](https://forum.rasa.com/u/juste).

## Passing Value Explicitly When Calling the Template
I am trying to pass a value from custom action to a template’s variable. I got an error as "Failed to fill utterance template ‘value from custom action is {my_variable}’. Tried to replace ‘my_variable’ but could not find a value for it. There is no slot with this name nor did you pass the value…
