Hello, I am using Rasa 3.7 CALM with GTPT4. Even the Greet flow is takign around 11 seconds. I am using Rasa Rest API with “http://localhost:5005/webhooks/rest/webhook” and furtehr using these repsonses to send messages.
Can you show your greet flow and the debug log?
Sorry for delay. In another theread I replied to the slowness. I have solved this slowness issue to an extent by selectively enabling ContextualResponseRephraser , utter_hello_mitramcares: - text: “Warm greetings from MitramCares! I’m your friendly helper. How can I make things easier for you today?” metadata: rephrase: False utter_can_do_something_else: - text: “Is there anything else I can assist you with?” metadata: rephrase: False Now response times are as below Conversion took -1(STT) -->: 0.88 seconds Recognized टाइम कितना हुआ है Conversion took -2(Rasa Response) -->: 2.21 seconds response_content → [{‘recipient_id’: ‘B0sMyqkWZRkmxDQOAAAD’, ‘text’: “It’s okay, I am here to help. It is currently [insert current time in English]. Is there anything else I can assist you with?”}, {‘recipient_id’: ‘B0sMyqkWZRkmxDQOAAAD’, ‘text’: ‘Is there anything else I can assist you with?’}] Conversion took -3 (Translation)–>: 0.76 seconds Conversion took -4(TTS) -->: 0.71 seconds Please let me know if I can improve perfromance further. I will keep posting my solutions here.