I am using Rasa X locally, I installed it using: pip install rasa-x --extra-index-url Simple Index and when I write, it recognizes the intent but doesn’t respond and I got this message:
**"WARNING:rasax.community.services.event_consumers.event_consumer:Saving event failed due to an 'IntegrityError'. This means that the event is already stored in the database. The event data was '{"sender_id": "604947a487904776b1538c8dc363f10e", "event": "action", "timestamp": 1591326887.867574, "name": "action_listen", "policy": null, "confidence": null}'. (sqlite3.IntegrityError) UNIQUE constraint failed: conversation_event.conversation_id, conversation_event.timestamp, conversation_event.type_name**
**[SQL: INSERT INTO conversation_event (conversation_id, type_name, timestamp, intent_name, action_name, slot_name, slot_value, policy, is_flagged, data, evaluation, rasa_environment) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)]**
**[parameters: ('604947a487904776b1538c8dc363f10e', 'action', 1591326887.867574, None, 'action_listen', None, None, None, 0, '{"sender_id": "604947a487904776b1538c8dc363f10e", "event": "action", "timestamp": 1591326887.867574, "name": "action_listen", "policy": null, "confidence": null}', None, 'production')]**
**(Background on this error at: http://sqlalche.me/e/gkpj)"**
update:
here’s the conversation
it should respond after this but action_listen is activated!
and here what I got after writing to the chatbot on the command:
I deleted rasa.db and events.db and still getting the same error, I also created a new project and copied needed files and also I am getting the same error!
note: bot was working perfectly using rasa shell
any help, please?