**duckingbread**  
**Chris**

### [Solved] How to implement our own custom connector for the custom UI  
*Rasa Open Source*  
Sep 25, 2019

In that MyIo file, change the class name to something like RestNew and then in credentials file also change it to MyIo.RestNew: .  
In MyIo file,  
```python
@classmethod
def name(cls):
    print("hi from name method")
    return "restnew"
```  
and use the same name in the uri as well like  
[http://localhost:5005/webhooks/restnew/webhooks](http://localhost:5005/webhooks/restnew/webhooks)

### Python cheat sheet for running Rasa  
*Tutorials, Resources & Videos*  
Sep 3, 2019

facing similar issues!

### Cannot import name _BACKEND ERROR  
*Rasa Open Source*  
Sep 3, 2019

I need to run the older versions only. Anyway found out the issue. Keras released the latest version which doesn’t use the _BACKEND variable. So i just listed earlier Keras version in the requirements file.

### [Latest] Rasa core integration with chatwidget  
[Rasa Open Source](https://forum.rasa.com/c/rasa/8)  
Aug 30, 2019

even I’m facing this issue … the browser doesn’t load with anything … i noticed that when i use the version 0.40 if the mrbot webchat, the browser loads.

### Connecting to Webchat  
*Rasa Open Source*  
Aug 28, 2019

yes even I would like to know how to connect to socketio exactly

### Cannot import name _BACKEND ERROR  
*Rasa Open Source*  
Aug 26, 2019

I’m getting the below error when I try to run the following:  
  
RASA core versions:  
rasa_core==0.10.4  
rasa_core_sdk==0.11.3  
my code:  
```python
agent = Agent(domain_file, policies=[
    MemoizationPolicy(max_history=3),
    KerasPolicy(),
    FallbackPolicy(fallback_action_name="action_d…
])
```

### Rasa X - how to connect to socketio using agent?  
*Deprecated Rasa X Community Edition*  
Aug 26, 2019

Can I get some more explanation, or a sample code? Like how would I connect my front end to the chatbot? (Something similar to what Justene had done [here](https://www.youtube.com/watch?v=xu6D_vLP5vY&t=56s) in the run_app.py, but for rasa x)

### Rasa stack using utter_response  
*Rasa Open Source*  
Jul 9, 2019

I am also facing a similar issue… if someone could look into this it would be helpful.  
[@akelad](https://forum.rasa.com/u/akelad) … can you help in this?

### Is there a way to generalize the data in intents  
*Rasa Open Source*  
Jun 10, 2019

Thanks for the help!

### Is there a way to generalize the data in intents  
*Rasa Open Source*  
May 28, 2019

suppose I want my bot to help user find the restaurant for their choice of food. For ice cream we have so many different flavours, So instead of writing down  
**intent:** fav_food  
- i want chocolate ice cream  
- my favourite flavour is vanilla  
- i want butterscotch ice cream

can we do something like  
**intent:**…
