https://github.com/valchanoficial/rasa_nlu
Rasa 3.x NLU - Github API
https://github.com/valchanoficial/rasa_nlu
github-api nlu python python3 rasa rasa-nlu rasa3
Last synced: over 1 year ago
JSON representation
Rasa 3.x NLU - Github API
- Host: GitHub
- URL: https://github.com/valchanoficial/rasa_nlu
- Owner: ValchanOficial
- Created: 2023-06-18T21:47:59.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-03-06T17:37:28.000Z (about 2 years ago)
- Last Synced: 2025-01-04T15:36:35.743Z (over 1 year ago)
- Topics: github-api, nlu, python, python3, rasa, rasa-nlu, rasa3
- Language: Python
- Homepage:
- Size: 1.53 GB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rasa 3.x NLU - Github API
- **python3 -m venv ./venv** - Create a virtual environment
- **source ./venv/bin/activate** - Activate the virtual environment
- **python3 -m pip install -r requirements.txt** - Install dependencies
- **rasa train** - # Train a model
- **rasa run actions** - # Run the action server - http://0.0.0.0:5055
- **rasa shell** - # Talk to the chatbot on the command line
- **/stop** - # Stop the conversation - on the command line

POST http://localhost:5055/webhook
Example payload:
```json
{
"next_action": "action_name",
"tracker": {
"sender_id": "user_id",
"slots": {
"slot_name": "slot_value"
},
"latest_message": {
"text": "latest_message_from_user"
}
}
}
```
https://rasa.com/docs/rasa/playground/