Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 4 days 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 (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-06T17:37:28.000Z (8 months ago)
- Last Synced: 2024-03-06T18:47:55.392Z (8 months 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![rasa](https://github.com/ValchanOficial/rasa_nlu/assets/16228014/09851d76-1779-45b9-8cc6-3775eaf7dda6)
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/