Hi everyone, i’m trying to only using API to create a different script. This is my url
curl --location ‘http://localhost:5005/model/train?save_to_default_model_directory=true&force_training=true&augmentation=50&num_threads=1&token=tung’
–header ‘Content-Type: application/json’
–data 'version: “3.1”
pipeline:
nlu:
-
intent: greet examples: |
- Hey
- Hi
- hey there
-
intent: faq examples: |
- What language do you speak?
- Do you only handle english?
stories:
- story: greet and faq
steps:
- intent: greet
- action: utter_greet
- intent: faq
- action: utter_faq
rules:
- rule: Greet user
steps:
- intent: greet
- action: utter_greet
intents:
- greet
- faq
responses: utter_greet:
- text: “Xin chào bạn” utter_faq:
- text: “test”
session_config: session_expiration_time: 60 carry_over_slots_to_new_session: true’
It success, but when i run that models after create that model file, i cant have any reply from bot. How i can fix this issue