@tiledesk/tiledesk-tybot-connector 2.0.8-rc2 → 2.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (82) hide show
  1. package/CHANGELOG.md +5 -31
  2. package/ExtApi.js +8 -1
  3. package/ExtUtil.js +6 -5
  4. package/Logger.js +13 -30
  5. package/TdCache copy.js +242 -0
  6. package/engine/IntentForm.js +1 -0
  7. package/engine/IntentsMachineFactory.js +4 -4
  8. package/engine/MongodbBotsDataSource.js +1 -0
  9. package/engine/MongodbIntentsMachine.js +1 -0
  10. package/engine/TiledeskChatbot.js +16 -11
  11. package/engine/TiledeskIntentsMachine.js +2 -1
  12. package/engine/mock/MockBotsDataSource.js +2 -1
  13. package/index.js +25 -22
  14. package/logs/app1.log +1310 -0
  15. package/package.json +2 -3
  16. package/services/AIService.js +1 -1
  17. package/services/IntegrationService.js +1 -1
  18. package/services/TilebotService.js +1 -1
  19. package/tiledeskChatbotPlugs/DirectivesChatbotPlug.js +18 -24
  20. package/tiledeskChatbotPlugs/FillParamsChatbotPlug.js +2 -1
  21. package/tiledeskChatbotPlugs/MarkbotChatbotPlug.js +3 -1
  22. package/tiledeskChatbotPlugs/SplitsChatbotPlug.js +3 -1
  23. package/tiledeskChatbotPlugs/WebhookChatbotPlug.js +9 -7
  24. package/tiledeskChatbotPlugs/directives/DEPRECATED_DirIfNotOpenHours.js +10 -3
  25. package/tiledeskChatbotPlugs/directives/DEPRECATED_DirIfOpenHours.js +9 -2
  26. package/tiledeskChatbotPlugs/directives/DirAddTags.js +3 -1
  27. package/tiledeskChatbotPlugs/directives/DirAiPrompt.js +1 -0
  28. package/tiledeskChatbotPlugs/directives/DirAskGPT.js +1 -0
  29. package/tiledeskChatbotPlugs/directives/DirAskGPTV2.js +1 -0
  30. package/tiledeskChatbotPlugs/directives/DirAssign.js +8 -5
  31. package/tiledeskChatbotPlugs/directives/DirAssignFromFunction.js +3 -1
  32. package/tiledeskChatbotPlugs/directives/DirAssistant.js +1 -0
  33. package/tiledeskChatbotPlugs/directives/DirBrevo.js +6 -4
  34. package/tiledeskChatbotPlugs/directives/DirCaptureUserReply.js +1 -0
  35. package/tiledeskChatbotPlugs/directives/DirClose.js +2 -0
  36. package/tiledeskChatbotPlugs/directives/DirCode.js +1 -0
  37. package/tiledeskChatbotPlugs/directives/DirCondition.js +1 -0
  38. package/tiledeskChatbotPlugs/directives/DirConnectBlock.js +1 -0
  39. package/tiledeskChatbotPlugs/directives/DirContactUpdate.js +3 -1
  40. package/tiledeskChatbotPlugs/directives/DirCustomerio.js +1 -0
  41. package/tiledeskChatbotPlugs/directives/DirDeflectToHelpCenter.js +5 -2
  42. package/tiledeskChatbotPlugs/directives/DirDeleteVariable.js +1 -0
  43. package/tiledeskChatbotPlugs/directives/DirDepartment.js +3 -1
  44. package/tiledeskChatbotPlugs/directives/DirFireTiledeskEvent.js +3 -1
  45. package/tiledeskChatbotPlugs/directives/DirForm.js +3 -1
  46. package/tiledeskChatbotPlugs/directives/DirGptTask.js +1 -0
  47. package/tiledeskChatbotPlugs/directives/DirGptTask_OLD.js +55 -36
  48. package/tiledeskChatbotPlugs/directives/DirHubspot.js +1 -0
  49. package/tiledeskChatbotPlugs/directives/DirIfOnlineAgents.js +4 -1
  50. package/tiledeskChatbotPlugs/directives/DirIfOnlineAgentsV2.js +4 -1
  51. package/tiledeskChatbotPlugs/directives/DirIfOpenHours.js +2 -0
  52. package/tiledeskChatbotPlugs/directives/DirIfOpenHours_OLD.js +12 -8
  53. package/tiledeskChatbotPlugs/directives/DirIntent.js +5 -6
  54. package/tiledeskChatbotPlugs/directives/DirJSONCondition.js +1 -0
  55. package/tiledeskChatbotPlugs/directives/DirLockIntent.js +1 -0
  56. package/tiledeskChatbotPlugs/directives/DirMake.js +16 -1
  57. package/tiledeskChatbotPlugs/directives/DirMessage.js +3 -1
  58. package/tiledeskChatbotPlugs/directives/DirMessageToBot.js +1 -0
  59. package/tiledeskChatbotPlugs/directives/DirMoveToAgent.js +4 -1
  60. package/tiledeskChatbotPlugs/directives/DirMoveToUnassigned.js +3 -0
  61. package/tiledeskChatbotPlugs/directives/DirQapla.js +1 -0
  62. package/tiledeskChatbotPlugs/directives/DirRandomReply.js +3 -1
  63. package/tiledeskChatbotPlugs/directives/DirRemoveCurrentBot.js +2 -1
  64. package/tiledeskChatbotPlugs/directives/DirReplaceBot.js +3 -1
  65. package/tiledeskChatbotPlugs/directives/DirReplaceBotV2.js +3 -1
  66. package/tiledeskChatbotPlugs/directives/DirReplaceBotV3.js +3 -1
  67. package/tiledeskChatbotPlugs/directives/DirReply.js +18 -7
  68. package/tiledeskChatbotPlugs/directives/DirReplyV2.js +13 -8
  69. package/tiledeskChatbotPlugs/directives/DirSendEmail.js +3 -1
  70. package/tiledeskChatbotPlugs/directives/DirSendWhatsapp.js +1 -0
  71. package/tiledeskChatbotPlugs/directives/DirSetAttribute.js +1 -0
  72. package/tiledeskChatbotPlugs/directives/DirSetAttributeV2.js +4 -1
  73. package/tiledeskChatbotPlugs/directives/DirSetConversationTags.js +3 -1
  74. package/tiledeskChatbotPlugs/directives/DirUnlockIntent.js +1 -0
  75. package/tiledeskChatbotPlugs/directives/DirWait.js +1 -0
  76. package/tiledeskChatbotPlugs/directives/DirWebRequest.js +1 -0
  77. package/tiledeskChatbotPlugs/directives/DirWebRequestV2.js +16 -1
  78. package/tiledeskChatbotPlugs/directives/DirWebRequestV2_old.js +417 -0
  79. package/tiledeskChatbotPlugs/directives/DirWebResponse.js +39 -0
  80. package/tiledeskChatbotPlugs/directives/DirWhatsappByAttribute.js +1 -0
  81. package/tiledeskChatbotPlugs/directives/Directives.js +0 -1
  82. package/utils/TiledeskChatbotUtil.js +57 -19
package/logs/app1.log CHANGED
@@ -12805,3 +12805,1313 @@ error: (TiledeskExpression) evaluateJavascriptExpression error: missing ) after
12805
12805
  error: (TiledeskExpression)Condition evaluation stopped because of invalid operand2 [object Object]
12806
12806
  error: (TiledeskExpression) Condition evaluation stopped because of invalid operand1 11height
12807
12807
  error: (TiledeskExpression) Invalid JSON Group expression {"conditions":[{"operand1":"11height","operand2":{"type":"const","value":"1"},"operator":"greaterThan","type":"condition"},{"operator":"AND","type":"operator"},{"operand1":"name","operand2":{"type":"const","value":"And"},"operator":"startsWith","type":"condition"}],"type":"expression"}
12808
+ info: Starting tilebot server...
12809
+ info: (Tilebot) Starting Tilebot..
12810
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
12811
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10002/modules/tilebot
12812
+ info: (Tilebot) Log: false
12813
+ info: (Tilebot) MAX_STEPS: 1000
12814
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
12815
+ info: (Tilebot) Starting Tilebot connector v2.0.7
12816
+ info: (Tilebot) Using static bots
12817
+ info: (Tilebot) Connecting Redis...
12818
+ error: (Tilebot) Redis connection error: connect ECONNREFUSED 127.0.0.1:6379 {"address":"127.0.0.1","code":"ECONNREFUSED","errno":-61,"port":6379,"stack":"Error: connect ECONNREFUSED 127.0.0.1:6379\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1278:16)","syscall":"connect"}
12819
+ info: Starting tilebot server...
12820
+ info: (Tilebot) Starting Tilebot..
12821
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
12822
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10002/modules/tilebot
12823
+ info: (Tilebot) Log: false
12824
+ info: (Tilebot) MAX_STEPS: 1000
12825
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
12826
+ info: (Tilebot) Starting Tilebot connector v2.0.7
12827
+ info: (Tilebot) Using static bots
12828
+ info: (Tilebot) Connecting Redis...
12829
+ info: (Tilebot) Redis connected
12830
+ info: (Tilebot) Tilebot started
12831
+ info: Tilebot route successfully started.
12832
+ info: Tilebot connector listening on port...
12833
+ error: Axios error: connect ECONNREFUSED 127.0.0.1:10001 {"address":"127.0.0.1","cause":{"address":"127.0.0.1","code":"ECONNREFUSED","errno":-61,"port":10001,"syscall":"connect"},"code":"ECONNREFUSED","config":{"adapter":["xhr","http","fetch"],"data":"{\"payload\":{\"_id\":\"22d8394c-bffa-44db-8d6b-2378a2e5347b\",\"senderFullname\":\"_tdinternal\",\"type\":\"text\",\"sender\":\"_tdinternal\",\"recipient\":\"support-group-projectID-9e14437317e44ddd94569baeab02ec08\",\"text\":\"/anomaly\",\"id_project\":\"projectID\",\"request\":{\"request_id\":\"support-group-projectID-9e14437317e44ddd94569baeab02ec08\",\"id_project\":\"projectID\"}},\"token\":\"XXX\"}","env":{"Blob":null},"headers":{"Accept":"application/json, text/plain, */*","Accept-Encoding":"gzip, compress, deflate, br","Content-Length":"363","Content-Type":"application/json","User-Agent":"axios/1.7.7"},"maxBodyLength":-1,"maxContentLength":-1,"method":"post","timeout":0,"transformRequest":[null],"transformResponse":[null],"transitional":{"clarifyTimeoutError":false,"forcedJSONParsing":true,"silentJSONParsing":true},"url":"http://localhost:10001/ext/botID","xsrfCookieName":"XSRF-TOKEN","xsrfHeaderName":"X-XSRF-TOKEN"},"errno":-61,"name":"Error","port":10001,"request":{"_currentRequest":{"_closed":false,"_contentLength":"363","_defaultKeepAlive":true,"_ended":false,"_events":{},"_eventsCount":7,"_hasBody":true,"_header":"POST /ext/botID HTTP/1.1\r\nAccept: application/json, text/plain, */*\r\nContent-Type: application/json\r\nUser-Agent: axios/1.7.7\r\nContent-Length: 363\r\nAccept-Encoding: gzip, compress, deflate, br\r\nHost: localhost:10001\r\nConnection: close\r\n\r\n","_headerSent":true,"_keepAliveTimeout":0,"_last":true,"_redirectable":"[Circular]","_removedConnection":false,"_removedContLen":false,"_removedTE":false,"_trailer":"","aborted":false,"agent":{"_events":{},"_eventsCount":2,"defaultPort":80,"freeSockets":{},"keepAlive":false,"keepAliveMsecs":1000,"maxFreeSockets":256,"maxSockets":null,"maxTotalSockets":null,"options":{"path":null},"protocol":"http:","requests":{},"scheduling":"lifo","sockets":{"localhost:10001:":[{"_closeAfterHandlingError":false,"_events":{"close":[null,null],"connect":[null,null,null]},"_eventsCount":8,"_hadError":true,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":[{"chunk":"POST /ext/botID HTTP/1.1\r\nAccept: application/json, text/plain, */*\r\nContent-Type: application/json\r\nUser-Agent: axios/1.7.7\r\nContent-Length: 363\r\nAccept-Encoding: gzip, compress, deflate, br\r\nHost: localhost:10001\r\nConnection: close\r\n\r\n","encoding":"latin1"},{"chunk":{"data":[123,34,112,97,121,108,111,97,100,34,58,123,34,95,105,100,34,58,34,50,50,100,56,51,57,52,99,45,98,102,102,97,45,52,52,100,98,45,56,100,54,98,45,50,51,55,56,97,50,101,53,51,52,55,98,34,44,34,115,101,110,100,101,114,70,117,108,108,110,97,109,101,34,58,34,95,116,100,105,110,116,101,114,110,97,108,34,44,34,116,121,112,101,34,58,34,116,101,120,116,34,44,34,115,101,110,100,101,114,34,58,34,95,116,100,105,110,116,101,114,110,97,108,34,44,34,114,101,99,105,112,105,101,110,116,34,58,34,115,117,112,112,111,114,116,45,103,114,111,117,112,45,112,114,111,106,101,99,116,73,68,45,57,101,49,52,52,51,55,51,49,55,101,52,52,100,100,100,57,52,53,54,57,98,97,101,97,98,48,50,101,99,48,56,34,44,34,116,101,120,116,34,58,34,47,97,110,111,109,97,108,121,34,44,34,105,100,95,112,114,111,106,101,99,116,34,58,34,112,114,111,106,101,99,116,73,68,34,44,34,114,101,113,117,101,115,116,34,58,123,34,114,101,113,117,101,115,116,95,105,100,34,58,34,115,117,112,112,111,114,116,45,103,114,111,117,112,45,112,114,111,106,101,99,116,73,68,45,57,101,49,52,52,51,55,51,49,55,101,52,52,100,100,100,57,52,53,54,57,98,97,101,97,98,48,50,101,99,48,56,34,44,34,105,100,95,112,114,111,106,101,99,116,34,58,34,112,114,111,106,101,99,116,73,68,34,125,125,44,34,116,111,107,101,110,34,58,34,88,88,88,34,125],"type":"Buffer"},"encoding":"buffer"}],"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":true,"closed":true,"constructed":true,"dataEmitted":false,"decoder":null,"defaultEncoding":"utf8","destroyed":true,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":true,"errored":{"address":"127.0.0.1","code":"ECONNREFUSED","errno":-61,"port":10001,"syscall":"connect"},"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":true,"closed":true,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":true,"emitClose":false,"ended":false,"ending":false,"errorEmitted":true,"errored":{"address":"127.0.0.1","code":"ECONNREFUSED","errno":-61,"port":10001,"syscall":"connect"},"finalCalled":false,"finished":false,"highWaterMark":16384,"length":600,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writelen":600,"writing":true},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null}]},"totalSocketCount":1},"chunkedEncoding":false,"destroyed":false,"finished":false,"host":"localhost","maxHeadersCount":null,"maxRequestsOnConnectionReached":false,"method":"POST","outputData":[],"outputSize":0,"parser":null,"path":"/ext/botID","protocol":"http:","res":null,"reusedSocket":false,"sendDate":false,"shouldKeepAlive":false,"socket":{"_closeAfterHandlingError":false,"_events":{"close":[null,null],"connect":[null,null,null]},"_eventsCount":8,"_hadError":true,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":[{"chunk":"POST /ext/botID HTTP/1.1\r\nAccept: application/json, text/plain, */*\r\nContent-Type: application/json\r\nUser-Agent: axios/1.7.7\r\nContent-Length: 363\r\nAccept-Encoding: gzip, compress, deflate, br\r\nHost: localhost:10001\r\nConnection: close\r\n\r\n","encoding":"latin1"},{"chunk":{"data":[123,34,112,97,121,108,111,97,100,34,58,123,34,95,105,100,34,58,34,50,50,100,56,51,57,52,99,45,98,102,102,97,45,52,52,100,98,45,56,100,54,98,45,50,51,55,56,97,50,101,53,51,52,55,98,34,44,34,115,101,110,100,101,114,70,117,108,108,110,97,109,101,34,58,34,95,116,100,105,110,116,101,114,110,97,108,34,44,34,116,121,112,101,34,58,34,116,101,120,116,34,44,34,115,101,110,100,101,114,34,58,34,95,116,100,105,110,116,101,114,110,97,108,34,44,34,114,101,99,105,112,105,101,110,116,34,58,34,115,117,112,112,111,114,116,45,103,114,111,117,112,45,112,114,111,106,101,99,116,73,68,45,57,101,49,52,52,51,55,51,49,55,101,52,52,100,100,100,57,52,53,54,57,98,97,101,97,98,48,50,101,99,48,56,34,44,34,116,101,120,116,34,58,34,47,97,110,111,109,97,108,121,34,44,34,105,100,95,112,114,111,106,101,99,116,34,58,34,112,114,111,106,101,99,116,73,68,34,44,34,114,101,113,117,101,115,116,34,58,123,34,114,101,113,117,101,115,116,95,105,100,34,58,34,115,117,112,112,111,114,116,45,103,114,111,117,112,45,112,114,111,106,101,99,116,73,68,45,57,101,49,52,52,51,55,51,49,55,101,52,52,100,100,100,57,52,53,54,57,98,97,101,97,98,48,50,101,99,48,56,34,44,34,105,100,95,112,114,111,106,101,99,116,34,58,34,112,114,111,106,101,99,116,73,68,34,125,125,44,34,116,111,107,101,110,34,58,34,88,88,88,34,125],"type":"Buffer"},"encoding":"buffer"}],"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":true,"closed":true,"constructed":true,"dataEmitted":false,"decoder":null,"defaultEncoding":"utf8","destroyed":true,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":true,"errored":{"address":"127.0.0.1","code":"ECONNREFUSED","errno":-61,"port":10001,"syscall":"connect"},"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":true,"closed":true,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":true,"emitClose":false,"ended":false,"ending":false,"errorEmitted":true,"errored":{"address":"127.0.0.1","code":"ECONNREFUSED","errno":-61,"port":10001,"syscall":"connect"},"finalCalled":false,"finished":false,"highWaterMark":16384,"length":600,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writelen":600,"writing":true},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null},"strictContentLength":false,"timeoutCb":null,"upgradeOrConnect":false,"useChunkedEncodingByDefault":true,"writable":true},"_currentUrl":"http://localhost:10001/ext/botID","_ended":false,"_ending":true,"_events":{},"_eventsCount":3,"_options":{"agents":{},"beforeRedirects":{},"headers":{"Accept":"application/json, text/plain, */*","Accept-Encoding":"gzip, compress, deflate, br","Content-Length":"363","Content-Type":"application/json","User-Agent":"axios/1.7.7"},"hostname":"localhost","maxBodyLength":null,"maxRedirects":21,"method":"POST","nativeProtocols":{"http:":{"METHODS":["ACL","BIND","CHECKOUT","CONNECT","COPY","DELETE","GET","HEAD","LINK","LOCK","M-SEARCH","MERGE","MKACTIVITY","MKCALENDAR","MKCOL","MOVE","NOTIFY","OPTIONS","PATCH","POST","PROPFIND","PROPPATCH","PURGE","PUT","REBIND","REPORT","SEARCH","SOURCE","SUBSCRIBE","TRACE","UNBIND","UNLINK","UNLOCK","UNSUBSCRIBE"],"STATUS_CODES":{"100":"Continue","101":"Switching Protocols","102":"Processing","103":"Early Hints","200":"OK","201":"Created","202":"Accepted","203":"Non-Authoritative Information","204":"No Content","205":"Reset Content","206":"Partial Content","207":"Multi-Status","208":"Already Reported","226":"IM Used","300":"Multiple Choices","301":"Moved Permanently","302":"Found","303":"See Other","304":"Not Modified","305":"Use Proxy","307":"Temporary Redirect","308":"Permanent Redirect","400":"Bad Request","401":"Unauthorized","402":"Payment Required","403":"Forbidden","404":"Not Found","405":"Method Not Allowed","406":"Not Acceptable","407":"Proxy Authentication Required","408":"Request Timeout","409":"Conflict","410":"Gone","411":"Length Required","412":"Precondition Failed","413":"Payload Too Large","414":"URI Too Long","415":"Unsupported Media Type","416":"Range Not Satisfiable","417":"Expectation Failed","418":"I'm a Teapot","421":"Misdirected Request","422":"Unprocessable Entity","423":"Locked","424":"Failed Dependency","425":"Too Early","426":"Upgrade Required","428":"Precondition Required","429":"Too Many Requests","431":"Request Header Fields Too Large","451":"Unavailable For Legal Reasons","500":"Internal Server Error","501":"Not Implemented","502":"Bad Gateway","503":"Service Unavailable","504":"Gateway Timeout","505":"HTTP Version Not Supported","506":"Variant Also Negotiates","507":"Insufficient Storage","508":"Loop Detected","509":"Bandwidth Limit Exceeded","510":"Not Extended","511":"Network Authentication Required"},"globalAgent":{"_events":{},"_eventsCount":2,"defaultPort":80,"freeSockets":{},"keepAlive":false,"keepAliveMsecs":1000,"maxFreeSockets":256,"maxSockets":null,"maxTotalSockets":null,"options":{"path":null},"protocol":"http:","requests":{},"scheduling":"lifo","sockets":{"localhost:10001:":[{"_closeAfterHandlingError":false,"_events":{"close":[null,null],"connect":[null,null,null]},"_eventsCount":8,"_hadError":true,"_host":"localhost","_httpMessage":{"_closed":false,"_contentLength":"363","_defaultKeepAlive":true,"_ended":false,"_events":{},"_eventsCount":7,"_hasBody":true,"_header":"POST /ext/botID HTTP/1.1\r\nAccept: application/json, text/plain, */*\r\nContent-Type: application/json\r\nUser-Agent: axios/1.7.7\r\nContent-Length: 363\r\nAccept-Encoding: gzip, compress, deflate, br\r\nHost: localhost:10001\r\nConnection: close\r\n\r\n","_headerSent":true,"_keepAliveTimeout":0,"_last":true,"_redirectable":"[Circular]","_removedConnection":false,"_removedContLen":false,"_removedTE":false,"_trailer":"","aborted":false,"agent":"[Circular]","chunkedEncoding":false,"destroyed":false,"finished":false,"host":"localhost","maxHeadersCount":null,"maxRequestsOnConnectionReached":false,"method":"POST","outputData":[],"outputSize":0,"parser":null,"path":"/ext/botID","protocol":"http:","res":null,"reusedSocket":false,"sendDate":false,"shouldKeepAlive":false,"socket":"[Circular]","strictContentLength":false,"timeoutCb":null,"upgradeOrConnect":false,"useChunkedEncodingByDefault":true,"writable":true},"_parent":null,"_pendingData":[{"chunk":"POST /ext/botID HTTP/1.1\r\nAccept: application/json, text/plain, */*\r\nContent-Type: application/json\r\nUser-Agent: axios/1.7.7\r\nContent-Length: 363\r\nAccept-Encoding: gzip, compress, deflate, br\r\nHost: localhost:10001\r\nConnection: close\r\n\r\n","encoding":"latin1"},{"chunk":{"data":[123,34,112,97,121,108,111,97,100,34,58,123,34,95,105,100,34,58,34,50,50,100,56,51,57,52,99,45,98,102,102,97,45,52,52,100,98,45,56,100,54,98,45,50,51,55,56,97,50,101,53,51,52,55,98,34,44,34,115,101,110,100,101,114,70,117,108,108,110,97,109,101,34,58,34,95,116,100,105,110,116,101,114,110,97,108,34,44,34,116,121,112,101,34,58,34,116,101,120,116,34,44,34,115,101,110,100,101,114,34,58,34,95,116,100,105,110,116,101,114,110,97,108,34,44,34,114,101,99,105,112,105,101,110,116,34,58,34,115,117,112,112,111,114,116,45,103,114,111,117,112,45,112,114,111,106,101,99,116,73,68,45,57,101,49,52,52,51,55,51,49,55,101,52,52,100,100,100,57,52,53,54,57,98,97,101,97,98,48,50,101,99,48,56,34,44,34,116,101,120,116,34,58,34,47,97,110,111,109,97,108,121,34,44,34,105,100,95,112,114,111,106,101,99,116,34,58,34,112,114,111,106,101,99,116,73,68,34,44,34,114,101,113,117,101,115,116,34,58,123,34,114,101,113,117,101,115,116,95,105,100,34,58,34,115,117,112,112,111,114,116,45,103,114,111,117,112,45,112,114,111,106,101,99,116,73,68,45,57,101,49,52,52,51,55,51,49,55,101,52,52,100,100,100,57,52,53,54,57,98,97,101,97,98,48,50,101,99,48,56,34,44,34,105,100,95,112,114,111,106,101,99,116,34,58,34,112,114,111,106,101,99,116,73,68,34,125,125,44,34,116,111,107,101,110,34,58,34,88,88,88,34,125],"type":"Buffer"},"encoding":"buffer"}],"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":true,"closed":true,"constructed":true,"dataEmitted":false,"decoder":null,"defaultEncoding":"utf8","destroyed":true,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":true,"errored":{"address":"127.0.0.1","code":"ECONNREFUSED","errno":-61,"port":10001,"syscall":"connect"},"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":true,"closed":true,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":true,"emitClose":false,"ended":false,"ending":false,"errorEmitted":true,"errored":{"address":"127.0.0.1","code":"ECONNREFUSED","errno":-61,"port":10001,"syscall":"connect"},"finalCalled":false,"finished":false,"highWaterMark":16384,"length":600,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writelen":600,"writing":true},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null}]},"totalSocketCount":1},"maxHeaderSize":16384},"https:":{"globalAgent":{"_events":{},"_eventsCount":2,"_sessionCache":{"list":[],"map":{}},"defaultPort":443,"freeSockets":{},"keepAlive":false,"keepAliveMsecs":1000,"maxCachedSessions":100,"maxFreeSockets":256,"maxSockets":null,"maxTotalSockets":null,"options":{"path":null},"protocol":"https:","requests":{},"scheduling":"lifo","sockets":{},"totalSocketCount":0}}},"path":"/ext/botID","pathname":"/ext/botID","port":"10001","protocol":"http:"},"_redirectCount":0,"_redirects":[],"_requestBodyBuffers":[{"data":{"data":[123,34,112,97,121,108,111,97,100,34,58,123,34,95,105,100,34,58,34,50,50,100,56,51,57,52,99,45,98,102,102,97,45,52,52,100,98,45,56,100,54,98,45,50,51,55,56,97,50,101,53,51,52,55,98,34,44,34,115,101,110,100,101,114,70,117,108,108,110,97,109,101,34,58,34,95,116,100,105,110,116,101,114,110,97,108,34,44,34,116,121,112,101,34,58,34,116,101,120,116,34,44,34,115,101,110,100,101,114,34,58,34,95,116,100,105,110,116,101,114,110,97,108,34,44,34,114,101,99,105,112,105,101,110,116,34,58,34,115,117,112,112,111,114,116,45,103,114,111,117,112,45,112,114,111,106,101,99,116,73,68,45,57,101,49,52,52,51,55,51,49,55,101,52,52,100,100,100,57,52,53,54,57,98,97,101,97,98,48,50,101,99,48,56,34,44,34,116,101,120,116,34,58,34,47,97,110,111,109,97,108,121,34,44,34,105,100,95,112,114,111,106,101,99,116,34,58,34,112,114,111,106,101,99,116,73,68,34,44,34,114,101,113,117,101,115,116,34,58,123,34,114,101,113,117,101,115,116,95,105,100,34,58,34,115,117,112,112,111,114,116,45,103,114,111,117,112,45,112,114,111,106,101,99,116,73,68,45,57,101,49,52,52,51,55,51,49,55,101,52,52,100,100,100,57,52,53,54,57,98,97,101,97,98,48,50,101,99,48,56,34,44,34,105,100,95,112,114,111,106,101,99,116,34,58,34,112,114,111,106,101,99,116,73,68,34,125,125,44,34,116,111,107,101,110,34,58,34,88,88,88,34,125],"type":"Buffer"}}],"_requestBodyLength":363,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":true,"defaultEncoding":"utf8","destroyed":false,"emitClose":true,"ended":false,"ending":false,"errorEmitted":false,"errored":null,"finalCalled":false,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":0,"prefinished":false,"sync":true,"writecb":null,"writelen":0,"writing":false}},"stack":"Error: connect ECONNREFUSED 127.0.0.1:10001\n at Function.AxiosError.from (/Users/gabriele95/Desktop/Tiledesk/tiledesk-chatbot/tybotRoute/node_modules/axios/dist/node/axios.cjs:876:14)\n at RedirectableRequest.handleRequestError (/Users/gabriele95/Desktop/Tiledesk/tiledesk-chatbot/tybotRoute/node_modules/axios/dist/node/axios.cjs:3156:25)\n at RedirectableRequest.emit (node:events:513:28)\n at ClientRequest.eventHandlers.<computed> (/Users/gabriele95/Desktop/Tiledesk/tiledesk-chatbot/tybotRoute/node_modules/follow-redirects/index.js:49:24)\n at ClientRequest.emit (node:events:513:28)\n at Socket.socketErrorListener (node:_http_client:494:9)\n at Socket.emit (node:events:513:28)\n at emitErrorNT (node:internal/streams/destroy:157:8)\n at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n at processTicksAndRejections (node:internal/process/task_queues:83:21)\n at Axios.request (/Users/gabriele95/Desktop/Tiledesk/tiledesk-chatbot/tybotRoute/node_modules/axios/dist/node/axios.cjs:4287:41)\n at runMicrotasks (<anonymous>)\n at processTicksAndRejections (node:internal/process/task_queues:96:5)","syscall":"connect"}
12834
+ info: Starting tilebot server...
12835
+ info: (Tilebot) Starting Tilebot..
12836
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
12837
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10002/modules/tilebot
12838
+ info: (Tilebot) Log: false
12839
+ info: (Tilebot) MAX_STEPS: 1000
12840
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
12841
+ info: (Tilebot) Starting Tilebot connector v2.0.7
12842
+ info: (Tilebot) Using static bots
12843
+ info: (Tilebot) Connecting Redis...
12844
+ info: (Tilebot) Redis connected
12845
+ info: (Tilebot) Tilebot started
12846
+ info: Tilebot route successfully started.
12847
+ info: Tilebot connector listening on port...
12848
+ error: Axios error response data: <!DOCTYPE html>
12849
+ <html lang="en">
12850
+ <head>
12851
+ <meta charset="utf-8">
12852
+ <title>Error</title>
12853
+ </head>
12854
+ <body>
12855
+ <pre>Cannot POST /modules/tilebot/ext/botID</pre>
12856
+ </body>
12857
+ </html>
12858
+
12859
+ info: Starting tilebot server...
12860
+ info: (Tilebot) Starting Tilebot..
12861
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
12862
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10002/modules/tilebot
12863
+ info: (Tilebot) Log: false
12864
+ info: (Tilebot) MAX_STEPS: 1000
12865
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
12866
+ info: (Tilebot) Starting Tilebot connector v2.0.7
12867
+ info: (Tilebot) Using static bots
12868
+ info: (Tilebot) Connecting Redis...
12869
+ info: (Tilebot) Redis connected
12870
+ info: (Tilebot) Tilebot started
12871
+ info: Tilebot route successfully started.
12872
+ info: Tilebot connector listening on port...
12873
+ error: Axios error response data: <!DOCTYPE html>
12874
+ <html lang="en">
12875
+ <head>
12876
+ <meta charset="utf-8">
12877
+ <title>Error</title>
12878
+ </head>
12879
+ <body>
12880
+ <pre>Cannot POST /modules/tilebot/ext/botID</pre>
12881
+ </body>
12882
+ </html>
12883
+
12884
+ info: Starting tilebot server...
12885
+ info: (Tilebot) Starting Tilebot..
12886
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
12887
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10002/modules/tilebot
12888
+ info: (Tilebot) Log: false
12889
+ info: (Tilebot) MAX_STEPS: 1000
12890
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
12891
+ info: (Tilebot) Starting Tilebot connector v2.0.7
12892
+ info: (Tilebot) Using static bots
12893
+ info: (Tilebot) Connecting Redis...
12894
+ info: (Tilebot) Redis connected
12895
+ info: (Tilebot) Tilebot started
12896
+ info: Tilebot route successfully started.
12897
+ info: Tilebot connector listening on port...
12898
+ error: Axios error response data: <!DOCTYPE html>
12899
+ <html lang="en">
12900
+ <head>
12901
+ <meta charset="utf-8">
12902
+ <title>Error</title>
12903
+ </head>
12904
+ <body>
12905
+ <pre>Cannot POST /modules/tilebot/ext/botID</pre>
12906
+ </body>
12907
+ </html>
12908
+
12909
+ info: Starting tilebot server...
12910
+ info: (Tilebot) Starting Tilebot..
12911
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
12912
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10002/modules/tilebot
12913
+ info: (Tilebot) Log: false
12914
+ info: (Tilebot) MAX_STEPS: 1000
12915
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
12916
+ info: (Tilebot) Starting Tilebot connector v2.0.7
12917
+ info: (Tilebot) Using static bots
12918
+ info: (Tilebot) Connecting Redis...
12919
+ info: (Tilebot) Redis connected
12920
+ info: (Tilebot) Tilebot started
12921
+ info: Tilebot route successfully started.
12922
+ info: Tilebot connector listening on port...
12923
+ error: Axios error response data: <!DOCTYPE html>
12924
+ <html lang="en">
12925
+ <head>
12926
+ <meta charset="utf-8">
12927
+ <title>Error</title>
12928
+ </head>
12929
+ <body>
12930
+ <pre>Cannot POST /modules/tilebot/ext/botID</pre>
12931
+ </body>
12932
+ </html>
12933
+
12934
+ info: Starting tilebot server...
12935
+ info: (Tilebot) Starting Tilebot..
12936
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
12937
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
12938
+ info: (Tilebot) Log: false
12939
+ info: (Tilebot) MAX_STEPS: 1000
12940
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
12941
+ info: (Tilebot) Starting Tilebot connector v2.0.7
12942
+ info: (Tilebot) Using static bots
12943
+ info: (Tilebot) Connecting Redis...
12944
+ info: (Tilebot) Redis connected
12945
+ info: (Tilebot) Tilebot started
12946
+ info: Tilebot route successfully started.
12947
+ info: Tilebot connector listening on port...
12948
+ info: Starting tilebot server...
12949
+ info: (Tilebot) Starting Tilebot..
12950
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
12951
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
12952
+ info: (Tilebot) Log: false
12953
+ info: (Tilebot) MAX_STEPS: 1000
12954
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
12955
+ info: (Tilebot) Starting Tilebot connector v2.0.7
12956
+ info: (Tilebot) Using static bots
12957
+ info: (Tilebot) Connecting Redis...
12958
+ info: (Tilebot) Redis connected
12959
+ info: (Tilebot) Tilebot started
12960
+ info: Tilebot route successfully started.
12961
+ info: Tilebot connector listening on port...
12962
+ info: Starting tilebot server...
12963
+ info: (Tilebot) Starting Tilebot..
12964
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
12965
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
12966
+ info: (Tilebot) Log: false
12967
+ info: (Tilebot) MAX_STEPS: 1000
12968
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
12969
+ info: (Tilebot) Starting Tilebot connector v2.0.7
12970
+ info: (Tilebot) Using static bots
12971
+ info: (Tilebot) Connecting Redis...
12972
+ info: (Tilebot) Redis connected
12973
+ info: (Tilebot) Tilebot started
12974
+ info: Tilebot route successfully started.
12975
+ info: Tilebot connector listening on port...
12976
+ info: Starting tilebot server...
12977
+ info: (Tilebot) Starting Tilebot..
12978
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
12979
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
12980
+ info: (Tilebot) Log: false
12981
+ info: (Tilebot) MAX_STEPS: 1000
12982
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
12983
+ info: (Tilebot) Starting Tilebot connector v2.0.7
12984
+ info: (Tilebot) Using static bots
12985
+ info: (Tilebot) Connecting Redis...
12986
+ info: (Tilebot) Redis connected
12987
+ info: (Tilebot) Tilebot started
12988
+ info: Tilebot route successfully started.
12989
+ info: Tilebot connector listening on port...
12990
+ info: Starting tilebot server...
12991
+ info: (Tilebot) Starting Tilebot..
12992
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
12993
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
12994
+ info: (Tilebot) Log: false
12995
+ info: (Tilebot) MAX_STEPS: 1000
12996
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
12997
+ info: (Tilebot) Starting Tilebot connector v2.0.7
12998
+ info: (Tilebot) Using static bots
12999
+ info: (Tilebot) Connecting Redis...
13000
+ info: (Tilebot) Redis connected
13001
+ info: (Tilebot) Tilebot started
13002
+ info: Tilebot route successfully started.
13003
+ info: Tilebot connector listening on port
13004
+ info: Starting tilebot server...
13005
+ info: (Tilebot) Starting Tilebot..
13006
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13007
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13008
+ info: (Tilebot) Log: false
13009
+ info: (Tilebot) MAX_STEPS: 1000
13010
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13011
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13012
+ info: (Tilebot) Using static bots
13013
+ info: (Tilebot) Connecting Redis...
13014
+ info: (Tilebot) Redis connected
13015
+ info: (Tilebot) Tilebot started
13016
+ info: Tilebot route successfully started.
13017
+ info: Tilebot connector listening on port
13018
+ error: (TiledeskChatbot) An error occurred during exact match: Cannot read properties of undefined (reading 'this is an audio file example') {"stack":"TypeError: Cannot read properties of undefined (reading 'this is an audio file example')\n at MockBotsDataSource.getByExactMatch (/Users/gabriele95/Desktop/Tiledesk/tiledesk-chatbot/tybotRoute/engine/mock/MockBotsDataSource.js:41:71)\n at /Users/gabriele95/Desktop/Tiledesk/tiledesk-chatbot/tybotRoute/engine/TiledeskChatbot.js:184:42\n at runMicrotasks (<anonymous>)\n at processTicksAndRejections (node:internal/process/task_queues:96:5)"}
13019
+ error: (TiledeskChatbot) An error occurred on IntentsFinder.decode() (/model/parse error):this.intentsFinder.decode is not a function
13020
+ error: DirReply Error sending reply: Request failed with status code 404 {"config":{"data":"{\"_tdActionType\":\"reply\",\"text\":\"I didn't understand. Can you rephrase your question?\",\"attributes\":{\"commands\":[{\"type\":\"wait\",\"time\":500},{\"type\":\"message\",\"message\":{\"type\":\"text\",\"text\":\"I didn't understand. Can you rephrase your question?\"}}],\"fillParams\":true,\"intentName\":\"defaultFallback\",\"flowAttributes\":{\"lastUserDocumentAsAttachmentURL\":\"http://my-audio-url.wav\",\"lastUserDocumentAsInlineURL\":\"http://my-audio-url.wav\",\"now\":\"2025-04-08T13:22:17.737Z\",\"UUID\":\"667b8afef4d04239b697cbcf6297fff6\",\"UUIDv4\":\"252c6e0c-4323-4b66-9731-7d67fdd0fe8d\"}},\"senderFullname\":\"Echo bot\"}","headers":{"Accept":"application/json, text/plain, */*","Authorization":"JWT XXX","Content-Length":584,"Content-Type":"application/json","User-Agent":"axios/0.21.4"},"maxBodyLength":-1,"maxContentLength":-1,"method":"post","timeout":0,"transformRequest":[null],"transformResponse":[null],"transitional":{"clarifyTimeoutError":false,"forcedJSONParsing":true,"silentJSONParsing":true},"url":"http://localhost:10002/projectID/requests/support-group-projectID-a000ba2772b04775bdec5e41128114e1/messages","xsrfCookieName":"XSRF-TOKEN","xsrfHeaderName":"X-XSRF-TOKEN"},"stack":"Error: Request failed with status code 404\n at createError (/Users/gabriele95/Desktop/Tiledesk/tiledesk-chatbot/tybotRoute/node_modules/@tiledesk/tiledesk-client/node_modules/axios/lib/core/createError.js:16:15)\n at settle (/Users/gabriele95/Desktop/Tiledesk/tiledesk-chatbot/tybotRoute/node_modules/@tiledesk/tiledesk-client/node_modules/axios/lib/core/settle.js:17:12)\n at IncomingMessage.handleStreamEnd (/Users/gabriele95/Desktop/Tiledesk/tiledesk-chatbot/tybotRoute/node_modules/@tiledesk/tiledesk-client/node_modules/axios/lib/adapters/http.js:269:11)\n at IncomingMessage.emit (node:events:525:35)\n at endReadableNT (node:internal/streams/readable:1358:12)\n at processTicksAndRejections (node:internal/process/task_queues:83:21)"}
13021
+ info: Starting tilebot server...
13022
+ info: (Tilebot) Starting Tilebot..
13023
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13024
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13025
+ info: (Tilebot) Log: false
13026
+ info: (Tilebot) MAX_STEPS: 1000
13027
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13028
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13029
+ info: (Tilebot) Using static bots
13030
+ info: (Tilebot) Connecting Redis...
13031
+ info: (Tilebot) Redis connected
13032
+ info: (Tilebot) Tilebot started
13033
+ info: Tilebot route successfully started.
13034
+ info: Tilebot connector listening on port
13035
+ error: Axios error response data: Integration not found for model undefined
13036
+ error: Error: DirAiPrompt llm key not found in integrations
13037
+ error: Axios error response data: {"detail":[{"loc":["string",0],"msg":"this is the error message","type":"string"}]}
13038
+ error: DirAiPrompt openai err: Request failed with status code 422 {"code":"ERR_BAD_REQUEST","config":{"adapter":["xhr","http","fetch"],"data":"{\"question\":\"this is the question\",\"llm\":\"myllm\",\"model\":\"llmmodel\",\"llm_key\":\"example_api_key\",\"temperature\":0.7,\"max_tokens\":512}","env":{"Blob":null},"headers":{"Accept":"application/json, text/plain, */*","Accept-Encoding":"gzip, compress, deflate, br","Content-Length":"131","Content-Type":"application/json","User-Agent":"axios/1.7.7"},"maxBodyLength":-1,"maxContentLength":-1,"method":"post","timeout":0,"transformRequest":[null],"transformResponse":[null],"transitional":{"clarifyTimeoutError":false,"forcedJSONParsing":true,"silentJSONParsing":true},"url":"http://localhost:10002/api/ask","xsrfCookieName":"XSRF-TOKEN","xsrfHeaderName":"X-XSRF-TOKEN"},"name":"AxiosError","request":{"_closed":false,"_contentLength":"131","_defaultKeepAlive":true,"_ended":true,"_events":{},"_eventsCount":7,"_hasBody":true,"_header":"POST /api/ask HTTP/1.1\r\nAccept: application/json, text/plain, */*\r\nContent-Type: application/json\r\nUser-Agent: axios/1.7.7\r\nContent-Length: 131\r\nAccept-Encoding: gzip, compress, deflate, br\r\nHost: localhost:10002\r\nConnection: close\r\n\r\n","_headerSent":true,"_keepAliveTimeout":0,"_last":true,"_redirectable":{"_currentRequest":"[Circular]","_currentUrl":"http://localhost:10002/api/ask","_ended":true,"_ending":true,"_events":{},"_eventsCount":3,"_options":{"agents":{},"beforeRedirects":{},"headers":{"Accept":"application/json, text/plain, */*","Accept-Encoding":"gzip, compress, deflate, br","Content-Length":"131","Content-Type":"application/json","User-Agent":"axios/1.7.7"},"hostname":"localhost","maxBodyLength":null,"maxRedirects":21,"method":"POST","nativeProtocols":{"http:":{"METHODS":["ACL","BIND","CHECKOUT","CONNECT","COPY","DELETE","GET","HEAD","LINK","LOCK","M-SEARCH","MERGE","MKACTIVITY","MKCALENDAR","MKCOL","MOVE","NOTIFY","OPTIONS","PATCH","POST","PROPFIND","PROPPATCH","PURGE","PUT","REBIND","REPORT","SEARCH","SOURCE","SUBSCRIBE","TRACE","UNBIND","UNLINK","UNLOCK","UNSUBSCRIBE"],"STATUS_CODES":{"100":"Continue","101":"Switching Protocols","102":"Processing","103":"Early Hints","200":"OK","201":"Created","202":"Accepted","203":"Non-Authoritative Information","204":"No Content","205":"Reset Content","206":"Partial Content","207":"Multi-Status","208":"Already Reported","226":"IM Used","300":"Multiple Choices","301":"Moved Permanently","302":"Found","303":"See Other","304":"Not Modified","305":"Use Proxy","307":"Temporary Redirect","308":"Permanent Redirect","400":"Bad Request","401":"Unauthorized","402":"Payment Required","403":"Forbidden","404":"Not Found","405":"Method Not Allowed","406":"Not Acceptable","407":"Proxy Authentication Required","408":"Request Timeout","409":"Conflict","410":"Gone","411":"Length Required","412":"Precondition Failed","413":"Payload Too Large","414":"URI Too Long","415":"Unsupported Media Type","416":"Range Not Satisfiable","417":"Expectation Failed","418":"I'm a Teapot","421":"Misdirected Request","422":"Unprocessable Entity","423":"Locked","424":"Failed Dependency","425":"Too Early","426":"Upgrade Required","428":"Precondition Required","429":"Too Many Requests","431":"Request Header Fields Too Large","451":"Unavailable For Legal Reasons","500":"Internal Server Error","501":"Not Implemented","502":"Bad Gateway","503":"Service Unavailable","504":"Gateway Timeout","505":"HTTP Version Not Supported","506":"Variant Also Negotiates","507":"Insufficient Storage","508":"Loop Detected","509":"Bandwidth Limit Exceeded","510":"Not Extended","511":"Network Authentication Required"},"globalAgent":{"_events":{},"_eventsCount":2,"defaultPort":80,"freeSockets":{},"keepAlive":false,"keepAliveMsecs":1000,"maxFreeSockets":256,"maxSockets":null,"maxTotalSockets":null,"options":{"path":null},"protocol":"http:","requests":{},"scheduling":"lifo","sockets":{"localhost:10002:":[{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null}]},"totalSocketCount":1},"maxHeaderSize":16384},"https:":{"globalAgent":{"_events":{},"_eventsCount":2,"_sessionCache":{"list":[],"map":{}},"defaultPort":443,"freeSockets":{},"keepAlive":false,"keepAliveMsecs":1000,"maxCachedSessions":100,"maxFreeSockets":256,"maxSockets":null,"maxTotalSockets":null,"options":{"path":null},"protocol":"https:","requests":{},"scheduling":"lifo","sockets":{},"totalSocketCount":0}}},"path":"/api/ask","pathname":"/api/ask","port":"10002","protocol":"http:"},"_redirectCount":0,"_redirects":[],"_requestBodyBuffers":[],"_requestBodyLength":131,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":true,"defaultEncoding":"utf8","destroyed":false,"emitClose":true,"ended":false,"ending":false,"errorEmitted":false,"errored":null,"finalCalled":false,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":0,"prefinished":false,"sync":true,"writecb":null,"writelen":0,"writing":false}},"_removedConnection":false,"_removedContLen":false,"_removedTE":false,"_trailer":"","aborted":false,"agent":{"_events":{},"_eventsCount":2,"defaultPort":80,"freeSockets":{},"keepAlive":false,"keepAliveMsecs":1000,"maxFreeSockets":256,"maxSockets":null,"maxTotalSockets":null,"options":{"path":null},"protocol":"http:","requests":{},"scheduling":"lifo","sockets":{"localhost:10002:":[{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null}]},"totalSocketCount":1},"chunkedEncoding":false,"destroyed":false,"finished":true,"host":"localhost","maxHeadersCount":null,"maxRequestsOnConnectionReached":false,"method":"POST","outputData":[],"outputSize":0,"parser":null,"path":"/api/ask","protocol":"http:","res":{"_consuming":false,"_dumped":false,"_events":{"end":[null,null]},"_eventsCount":4,"_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":true,"closed":true,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":true,"emitClose":true,"emittedReadable":false,"encoding":null,"endEmitted":true,"ended":true,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":false,"objectMode":false,"pipes":[],"readableListening":false,"reading":false,"readingMore":true,"resumeScheduled":false,"sync":true},"aborted":false,"client":{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null},"complete":true,"httpVersion":"1.1","httpVersionMajor":1,"httpVersionMinor":1,"method":null,"rawHeaders":["X-Powered-By","Express","Content-Type","application/json; charset=utf-8","Content-Length","83","ETag","W/\"53-r1gE0xIC+8fgNRuH768xfjuFcI8\"","Date","Tue, 08 Apr 2025 13:22:17 GMT","Connection","close"],"rawTrailers":[],"redirects":[],"req":"[Circular]","responseUrl":"http://localhost:10002/api/ask","socket":{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null},"statusCode":422,"statusMessage":"Unprocessable Entity","upgrade":false,"url":""},"reusedSocket":false,"sendDate":false,"shouldKeepAlive":false,"socket":{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null},"strictContentLength":false,"timeoutCb":null,"upgradeOrConnect":false,"useChunkedEncodingByDefault":true,"writable":true},"response":{"config":{"adapter":["xhr","http","fetch"],"data":"{\"question\":\"this is the question\",\"llm\":\"myllm\",\"model\":\"llmmodel\",\"llm_key\":\"example_api_key\",\"temperature\":0.7,\"max_tokens\":512}","env":{"Blob":null},"headers":{"Accept":"application/json, text/plain, */*","Accept-Encoding":"gzip, compress, deflate, br","Content-Length":"131","Content-Type":"application/json","User-Agent":"axios/1.7.7"},"maxBodyLength":-1,"maxContentLength":-1,"method":"post","timeout":0,"transformRequest":[null],"transformResponse":[null],"transitional":{"clarifyTimeoutError":false,"forcedJSONParsing":true,"silentJSONParsing":true},"url":"http://localhost:10002/api/ask","xsrfCookieName":"XSRF-TOKEN","xsrfHeaderName":"X-XSRF-TOKEN"},"data":{"detail":[{"loc":["string",0],"msg":"this is the error message","type":"string"}]},"headers":{"connection":"close","content-length":"83","content-type":"application/json; charset=utf-8","date":"Tue, 08 Apr 2025 13:22:17 GMT","etag":"W/\"53-r1gE0xIC+8fgNRuH768xfjuFcI8\"","x-powered-by":"Express"},"request":{"_closed":false,"_contentLength":"131","_defaultKeepAlive":true,"_ended":true,"_events":{},"_eventsCount":7,"_hasBody":true,"_header":"POST /api/ask HTTP/1.1\r\nAccept: application/json, text/plain, */*\r\nContent-Type: application/json\r\nUser-Agent: axios/1.7.7\r\nContent-Length: 131\r\nAccept-Encoding: gzip, compress, deflate, br\r\nHost: localhost:10002\r\nConnection: close\r\n\r\n","_headerSent":true,"_keepAliveTimeout":0,"_last":true,"_redirectable":{"_currentRequest":"[Circular]","_currentUrl":"http://localhost:10002/api/ask","_ended":true,"_ending":true,"_events":{},"_eventsCount":3,"_options":{"agents":{},"beforeRedirects":{},"headers":{"Accept":"application/json, text/plain, */*","Accept-Encoding":"gzip, compress, deflate, br","Content-Length":"131","Content-Type":"application/json","User-Agent":"axios/1.7.7"},"hostname":"localhost","maxBodyLength":null,"maxRedirects":21,"method":"POST","nativeProtocols":{"http:":{"METHODS":["ACL","BIND","CHECKOUT","CONNECT","COPY","DELETE","GET","HEAD","LINK","LOCK","M-SEARCH","MERGE","MKACTIVITY","MKCALENDAR","MKCOL","MOVE","NOTIFY","OPTIONS","PATCH","POST","PROPFIND","PROPPATCH","PURGE","PUT","REBIND","REPORT","SEARCH","SOURCE","SUBSCRIBE","TRACE","UNBIND","UNLINK","UNLOCK","UNSUBSCRIBE"],"STATUS_CODES":{"100":"Continue","101":"Switching Protocols","102":"Processing","103":"Early Hints","200":"OK","201":"Created","202":"Accepted","203":"Non-Authoritative Information","204":"No Content","205":"Reset Content","206":"Partial Content","207":"Multi-Status","208":"Already Reported","226":"IM Used","300":"Multiple Choices","301":"Moved Permanently","302":"Found","303":"See Other","304":"Not Modified","305":"Use Proxy","307":"Temporary Redirect","308":"Permanent Redirect","400":"Bad Request","401":"Unauthorized","402":"Payment Required","403":"Forbidden","404":"Not Found","405":"Method Not Allowed","406":"Not Acceptable","407":"Proxy Authentication Required","408":"Request Timeout","409":"Conflict","410":"Gone","411":"Length Required","412":"Precondition Failed","413":"Payload Too Large","414":"URI Too Long","415":"Unsupported Media Type","416":"Range Not Satisfiable","417":"Expectation Failed","418":"I'm a Teapot","421":"Misdirected Request","422":"Unprocessable Entity","423":"Locked","424":"Failed Dependency","425":"Too Early","426":"Upgrade Required","428":"Precondition Required","429":"Too Many Requests","431":"Request Header Fields Too Large","451":"Unavailable For Legal Reasons","500":"Internal Server Error","501":"Not Implemented","502":"Bad Gateway","503":"Service Unavailable","504":"Gateway Timeout","505":"HTTP Version Not Supported","506":"Variant Also Negotiates","507":"Insufficient Storage","508":"Loop Detected","509":"Bandwidth Limit Exceeded","510":"Not Extended","511":"Network Authentication Required"},"globalAgent":{"_events":{},"_eventsCount":2,"defaultPort":80,"freeSockets":{},"keepAlive":false,"keepAliveMsecs":1000,"maxFreeSockets":256,"maxSockets":null,"maxTotalSockets":null,"options":{"path":null},"protocol":"http:","requests":{},"scheduling":"lifo","sockets":{"localhost:10002:":[{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null}]},"totalSocketCount":1},"maxHeaderSize":16384},"https:":{"globalAgent":{"_events":{},"_eventsCount":2,"_sessionCache":{"list":[],"map":{}},"defaultPort":443,"freeSockets":{},"keepAlive":false,"keepAliveMsecs":1000,"maxCachedSessions":100,"maxFreeSockets":256,"maxSockets":null,"maxTotalSockets":null,"options":{"path":null},"protocol":"https:","requests":{},"scheduling":"lifo","sockets":{},"totalSocketCount":0}}},"path":"/api/ask","pathname":"/api/ask","port":"10002","protocol":"http:"},"_redirectCount":0,"_redirects":[],"_requestBodyBuffers":[],"_requestBodyLength":131,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":true,"defaultEncoding":"utf8","destroyed":false,"emitClose":true,"ended":false,"ending":false,"errorEmitted":false,"errored":null,"finalCalled":false,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":0,"prefinished":false,"sync":true,"writecb":null,"writelen":0,"writing":false}},"_removedConnection":false,"_removedContLen":false,"_removedTE":false,"_trailer":"","aborted":false,"agent":{"_events":{},"_eventsCount":2,"defaultPort":80,"freeSockets":{},"keepAlive":false,"keepAliveMsecs":1000,"maxFreeSockets":256,"maxSockets":null,"maxTotalSockets":null,"options":{"path":null},"protocol":"http:","requests":{},"scheduling":"lifo","sockets":{"localhost:10002:":[{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null}]},"totalSocketCount":1},"chunkedEncoding":false,"destroyed":false,"finished":true,"host":"localhost","maxHeadersCount":null,"maxRequestsOnConnectionReached":false,"method":"POST","outputData":[],"outputSize":0,"parser":null,"path":"/api/ask","protocol":"http:","res":{"_consuming":false,"_dumped":false,"_events":{"end":[null,null]},"_eventsCount":4,"_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":true,"closed":true,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":true,"emitClose":true,"emittedReadable":false,"encoding":null,"endEmitted":true,"ended":true,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":false,"objectMode":false,"pipes":[],"readableListening":false,"reading":false,"readingMore":true,"resumeScheduled":false,"sync":true},"aborted":false,"client":{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null},"complete":true,"httpVersion":"1.1","httpVersionMajor":1,"httpVersionMinor":1,"method":null,"rawHeaders":["X-Powered-By","Express","Content-Type","application/json; charset=utf-8","Content-Length","83","ETag","W/\"53-r1gE0xIC+8fgNRuH768xfjuFcI8\"","Date","Tue, 08 Apr 2025 13:22:17 GMT","Connection","close"],"rawTrailers":[],"redirects":[],"req":"[Circular]","responseUrl":"http://localhost:10002/api/ask","socket":{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null},"statusCode":422,"statusMessage":"Unprocessable Entity","upgrade":false,"url":""},"reusedSocket":false,"sendDate":false,"shouldKeepAlive":false,"socket":{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null},"strictContentLength":false,"timeoutCb":null,"upgradeOrConnect":false,"useChunkedEncodingByDefault":true,"writable":true},"status":422,"statusText":"Unprocessable Entity"},"stack":"AxiosError: Request failed with status code 422\n at settle (/Users/gabriele95/Desktop/Tiledesk/tiledesk-chatbot/tybotRoute/node_modules/axios/dist/node/axios.cjs:2019:12)\n at IncomingMessage.handleStreamEnd (/Users/gabriele95/Desktop/Tiledesk/tiledesk-chatbot/tybotRoute/node_modules/axios/dist/node/axios.cjs:3135:11)\n at IncomingMessage.emit (node:events:525:35)\n at endReadableNT (node:internal/streams/readable:1358:12)\n at processTicksAndRejections (node:internal/process/task_queues:83:21)\n at Axios.request (/Users/gabriele95/Desktop/Tiledesk/tiledesk-chatbot/tybotRoute/node_modules/axios/dist/node/axios.cjs:4287:41)\n at runMicrotasks (<anonymous>)\n at processTicksAndRejections (node:internal/process/task_queues:96:5)","status":422}
13039
+ info: Starting tilebot server...
13040
+ info: (Tilebot) Starting Tilebot..
13041
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13042
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13043
+ info: (Tilebot) Log: false
13044
+ info: (Tilebot) MAX_STEPS: 1000
13045
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13046
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13047
+ info: (Tilebot) Using static bots
13048
+ info: (Tilebot) Connecting Redis...
13049
+ info: (Tilebot) Redis connected
13050
+ info: (Tilebot) Tilebot started
13051
+ info: Tilebot route successfully started.
13052
+ info: Tilebot connector listening on port 10001
13053
+ error: (DirAskGPT) Error: gptkey is mandatory
13054
+ error: Axios error response data: {"error":"no knowledge base settings found"}
13055
+ error: DirAskGPT Get kb settings error {"error":"no knowledge base settings found"}
13056
+ error: (DirAskGPT) Error: gptkey is mandatory
13057
+ error: (DirAskGPT) Error: question attribute is mandatory. Executing condition false...
13058
+ error: (DirAskGPT) Error: kbid attribute is mandatory. Executing condition false...
13059
+ info: Starting tilebot server...
13060
+ info: (Tilebot) Starting Tilebot..
13061
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13062
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13063
+ info: (Tilebot) Log: false
13064
+ info: (Tilebot) MAX_STEPS: 1000
13065
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13066
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13067
+ info: (Tilebot) Using static bots
13068
+ info: (Tilebot) Connecting Redis...
13069
+ info: (Tilebot) Redis connected
13070
+ info: (Tilebot) Tilebot started
13071
+ info: Tilebot route successfully started.
13072
+ info: Tilebot connector listening on port 10001
13073
+ error: Axios error response data: {"error":{"answer":"No answer","chat_history_dict":{},"citations":null,"content_chunks":null,"error_message":"IndexError('list index out of range')","id":null,"ids":null,"namespace":"66ec24a028a0c600130baa6a","prompt_token_size":0,"source":null,"sources":null,"success":false},"statusText":"Bad Request","success":false}
13074
+ error: DirAskGPTV2 error:
13075
+ info: DirAskGPTV2 Error: gptkey is mandatory
13076
+ error: Axios error response data: {"error":"no knowledge base settings found"}
13077
+ error: DirAskGPTV2 Get kb settings error {"error":"no knowledge base settings found"}
13078
+ info: DirAskGPTV2 Error: gptkey is mandatory
13079
+ error: DirAskGPTV2 Error: question attribute is mandatory. Executing condition false...
13080
+ info: Starting tilebot server...
13081
+ info: (Tilebot) Starting Tilebot..
13082
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13083
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13084
+ info: (Tilebot) Log: false
13085
+ info: (Tilebot) MAX_STEPS: 1000
13086
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13087
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13088
+ info: (Tilebot) Using static bots
13089
+ info: (Tilebot) Connecting Redis...
13090
+ info: (Tilebot) Redis connected
13091
+ info: (Tilebot) Tilebot started
13092
+ info: Tilebot route successfully started.
13093
+ info: Tilebot connector listening on port
13094
+ info: Starting tilebot server...
13095
+ info: (Tilebot) Starting Tilebot..
13096
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13097
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13098
+ info: (Tilebot) Log: false
13099
+ info: (Tilebot) MAX_STEPS: 1000
13100
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13101
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13102
+ info: (Tilebot) Using static bots
13103
+ info: (Tilebot) Connecting Redis...
13104
+ info: (Tilebot) Redis connected
13105
+ info: (Tilebot) Tilebot started
13106
+ info: Tilebot route successfully started.
13107
+ info: Tilebot connector listening on port
13108
+ info: Wait a little (~1s)...
13109
+ info: Starting tilebot server...
13110
+ info: (Tilebot) Starting Tilebot..
13111
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13112
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13113
+ info: (Tilebot) Log: false
13114
+ info: (Tilebot) MAX_STEPS: 1000
13115
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13116
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13117
+ info: (Tilebot) Using static bots
13118
+ info: (Tilebot) Connecting Redis...
13119
+ info: (Tilebot) Redis connected
13120
+ info: (Tilebot) Tilebot started
13121
+ info: Tilebot route successfully started.
13122
+ info: Tilebot connector listening on port
13123
+ error: (TiledeskExpression) evaluateJavascriptExpression error: jsondata2 is not defined - while evaluating the following expression: '
13124
+ console.log('a var...chatbot_name!', context.attributes.chatbot_name);
13125
+ context.setAttribute('myvar', '1');
13126
+ context.deleteAttribute('chatbot_name');
13127
+ context.deleteAttribute('conversation_id');
13128
+ context.attributes.jsondata2.c = 7;
13129
+ context.setAttribute('jsondata2', jsondata2);
13130
+ console.log("all vars:", context.allVars());
13131
+ '
13132
+ info: Starting tilebot server...
13133
+ info: (Tilebot) Starting Tilebot..
13134
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13135
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13136
+ info: (Tilebot) Log: false
13137
+ info: (Tilebot) MAX_STEPS: 1000
13138
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13139
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13140
+ info: (Tilebot) Using static bots
13141
+ info: (Tilebot) Connecting Redis...
13142
+ info: (Tilebot) Redis connected
13143
+ info: (Tilebot) Tilebot started
13144
+ info: Tilebot route successfully started.
13145
+ info: Tilebot connector listening on port
13146
+ info: Starting tilebot server...
13147
+ info: (Tilebot) Starting Tilebot..
13148
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13149
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13150
+ info: (Tilebot) Log: false
13151
+ info: (Tilebot) MAX_STEPS: 1000
13152
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13153
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13154
+ info: (Tilebot) Using static bots
13155
+ info: (Tilebot) Connecting Redis...
13156
+ info: (Tilebot) Redis connected
13157
+ info: (Tilebot) Tilebot started
13158
+ info: Tilebot route successfully started.
13159
+ info: Tilebot connector listening on port
13160
+ info: Starting tilebot server...
13161
+ info: (Tilebot) Starting Tilebot..
13162
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13163
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13164
+ info: (Tilebot) Log: false
13165
+ info: (Tilebot) MAX_STEPS: 1000
13166
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13167
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13168
+ info: (Tilebot) Using static bots
13169
+ info: (Tilebot) Connecting Redis...
13170
+ info: (Tilebot) Redis connected
13171
+ info: (Tilebot) Tilebot started
13172
+ info: Tilebot route successfully started.
13173
+ info: Tilebot connector listening on port
13174
+ error: Axios error response data: {"error":"Required parameters botid not found. Value is 'null' or 'undefined'","success":false}
13175
+ error: Axios error response data: {"error":"Required parameters botid not found. Value is 'null' or 'undefined'","success":false}
13176
+ info: Starting tilebot server...
13177
+ info: (Tilebot) Starting Tilebot..
13178
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13179
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13180
+ info: (Tilebot) Log: false
13181
+ info: (Tilebot) MAX_STEPS: 1000
13182
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13183
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13184
+ info: (Tilebot) Using static bots
13185
+ info: (Tilebot) Connecting Redis...
13186
+ info: (Tilebot) Redis connected
13187
+ info: (Tilebot) Tilebot started
13188
+ info: Tilebot route successfully started.
13189
+ info: Tilebot connector listening on port
13190
+ error: (TiledeskChatbot) An error occurred during exact match: Cannot read properties of undefined (reading '/start') {"stack":"TypeError: Cannot read properties of undefined (reading '/start')\n at MockBotsDataSource.getByExactMatch (/Users/gabriele95/Desktop/Tiledesk/tiledesk-chatbot/tybotRoute/engine/mock/MockBotsDataSource.js:41:71)\n at /Users/gabriele95/Desktop/Tiledesk/tiledesk-chatbot/tybotRoute/engine/TiledeskChatbot.js:184:42\n at runMicrotasks (<anonymous>)\n at processTicksAndRejections (node:internal/process/task_queues:96:5)"}
13191
+ error: (TiledeskChatbot) An error occurred on IntentsFinder.decode() (/model/parse error):this.intentsFinder.decode is not a function
13192
+ info: Starting tilebot server...
13193
+ info: (Tilebot) Starting Tilebot..
13194
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13195
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13196
+ info: (Tilebot) Log: false
13197
+ info: (Tilebot) MAX_STEPS: 1000
13198
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13199
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13200
+ info: (Tilebot) Using static bots
13201
+ info: (Tilebot) Connecting Redis...
13202
+ info: (Tilebot) Redis connected
13203
+ info: (Tilebot) Tilebot started
13204
+ info: Tilebot route successfully started.
13205
+ info: Tilebot connector listening on port 10001
13206
+ info: Starting tilebot server...
13207
+ info: (Tilebot) Starting Tilebot..
13208
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13209
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13210
+ info: (Tilebot) Log: false
13211
+ info: (Tilebot) MAX_STEPS: 1000
13212
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13213
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13214
+ info: (Tilebot) Using static bots
13215
+ info: (Tilebot) Connecting Redis...
13216
+ info: (Tilebot) Redis connected
13217
+ info: (Tilebot) Tilebot started
13218
+ info: Tilebot route successfully started.
13219
+ info: Tilebot connector listening on port 10001
13220
+ error: Axios error response data: {"error":{"code":null,"message":"you must provide a model parameter","param":null,"type":"invalid_request_error"}}
13221
+ error: (DirGptTask) gptkey is mandatory
13222
+ error: Axios error response data: Communication interrupted
13223
+ error: Axios error response data: <!DOCTYPE html>
13224
+ <html lang="en">
13225
+ <head>
13226
+ <meta charset="utf-8">
13227
+ <title>Error</title>
13228
+ </head>
13229
+ <body>
13230
+ <pre>Cannot GET /projectID/kbsettings</pre>
13231
+ </body>
13232
+ </html>
13233
+
13234
+ error: (DirGptTask) Get KnowledgeBase err:
13235
+ error: (DirGptTask) gptkey is mandatory
13236
+ info: Starting tilebot server...
13237
+ info: (Tilebot) Starting Tilebot..
13238
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13239
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13240
+ info: (Tilebot) Log: false
13241
+ info: (Tilebot) MAX_STEPS: 1000
13242
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13243
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13244
+ info: (Tilebot) Using static bots
13245
+ info: (Tilebot) Connecting Redis...
13246
+ info: (Tilebot) Redis connected
13247
+ info: (Tilebot) Tilebot started
13248
+ info: Tilebot route successfully started.
13249
+ info: Tilebot connector listening on port 10001
13250
+ error: (DirHubspot) err response: Contact already exists. Existing ID: 801 {"category":"CONFLICT","correlationId":"f426b0c0-1063-4aac-9859-f40108dcb09b","status":"error"}
13251
+ error: (DirHubspot) err response: Authentication credentials not found. This API supports OAuth 2.0 authentication and you can find more details at https://developers.hubspot.com/docs/methods/auth/oauth-overview {"category":"INVALID_AUTHENTICATION","correlationId":"53dab600-5de9-4aa3-b631-b0f11f43e062","status":"error"}
13252
+ error: (DirHubspot) err response: Property values were not valid: [{"isValid":false,"message":"Email address dsfsafas@ is invalid","error":"INVALID_EMAIL","name":"email"}] {"category":"VALIDATION_ERROR","correlationId":"e3d7ddf8-5d21-4059-86d0-35ae9093755c","status":"error"}
13253
+ info: Starting tilebot server...
13254
+ info: (Tilebot) Starting Tilebot..
13255
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13256
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13257
+ info: (Tilebot) Log: false
13258
+ info: (Tilebot) MAX_STEPS: 1000
13259
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13260
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13261
+ info: (Tilebot) Using static bots
13262
+ info: (Tilebot) Connecting Redis...
13263
+ info: (Tilebot) Redis connected
13264
+ info: (Tilebot) Tilebot started
13265
+ info: Tilebot route successfully started.
13266
+ info: Tilebot connector listening on port 10001
13267
+ info: Starting tilebot server...
13268
+ info: (Tilebot) Starting Tilebot..
13269
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13270
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13271
+ info: (Tilebot) Log: false
13272
+ info: (Tilebot) MAX_STEPS: 1000
13273
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13274
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13275
+ info: (Tilebot) Using static bots
13276
+ info: (Tilebot) Connecting Redis...
13277
+ info: (Tilebot) Redis connected
13278
+ info: (Tilebot) Tilebot started
13279
+ info: Tilebot route successfully started.
13280
+ info: Tilebot connector listening on port 10001
13281
+ info: Starting tilebot server...
13282
+ info: (Tilebot) Starting Tilebot..
13283
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13284
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13285
+ info: (Tilebot) Log: false
13286
+ info: (Tilebot) MAX_STEPS: 1000
13287
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13288
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13289
+ info: (Tilebot) Using static bots
13290
+ info: (Tilebot) Connecting Redis...
13291
+ info: (Tilebot) Redis connected
13292
+ info: (Tilebot) Tilebot started
13293
+ info: Tilebot route successfully started.
13294
+ info: Tilebot connector listening on port 10001
13295
+ error: (DirMake) Error: webhook_url is undefined or null or empty string:
13296
+ info: Starting tilebot server...
13297
+ info: (Tilebot) Starting Tilebot..
13298
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13299
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13300
+ info: (Tilebot) Log: false
13301
+ info: (Tilebot) MAX_STEPS: 1000
13302
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13303
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13304
+ info: (Tilebot) Using static bots
13305
+ info: (Tilebot) Connecting Redis...
13306
+ info: (Tilebot) Redis connected
13307
+ info: (Tilebot) Tilebot started
13308
+ info: Tilebot route successfully started.
13309
+ info: Tilebot connector listening on port 10001
13310
+ info: Starting tilebot server...
13311
+ info: (Tilebot) Starting Tilebot..
13312
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13313
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13314
+ info: (Tilebot) Log: false
13315
+ info: (Tilebot) MAX_STEPS: 1000
13316
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13317
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13318
+ info: (Tilebot) Using static bots
13319
+ info: (Tilebot) Connecting Redis...
13320
+ info: (Tilebot) Redis connected
13321
+ info: (Tilebot) Tilebot started
13322
+ info: Tilebot route successfully started.
13323
+ info: Tilebot connector listening on port 10001
13324
+ info: Starting tilebot server...
13325
+ info: (Tilebot) Starting Tilebot..
13326
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13327
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13328
+ info: (Tilebot) Log: false
13329
+ info: (Tilebot) MAX_STEPS: 1000
13330
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13331
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13332
+ info: (Tilebot) Using static bots
13333
+ info: (Tilebot) Connecting Redis...
13334
+ info: (Tilebot) Redis connected
13335
+ info: (Tilebot) Tilebot started
13336
+ info: Tilebot route successfully started.
13337
+ info: Tilebot connector listening on port 10001
13338
+ info: Starting tilebot server...
13339
+ info: (Tilebot) Starting Tilebot..
13340
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13341
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13342
+ info: (Tilebot) Log: false
13343
+ info: (Tilebot) MAX_STEPS: 1000
13344
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13345
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13346
+ info: (Tilebot) Using static bots
13347
+ info: (Tilebot) Connecting Redis...
13348
+ info: (Tilebot) Redis connected
13349
+ info: (Tilebot) Tilebot started
13350
+ info: Tilebot route successfully started.
13351
+ info: Tilebot connector listening on port 10001
13352
+ info: Starting tilebot server...
13353
+ info: (Tilebot) Starting Tilebot..
13354
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13355
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13356
+ info: (Tilebot) Log: false
13357
+ info: (Tilebot) MAX_STEPS: 1000
13358
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13359
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13360
+ info: (Tilebot) Using static bots
13361
+ info: (Tilebot) Connecting Redis...
13362
+ info: (Tilebot) Redis connected
13363
+ info: (Tilebot) Tilebot started
13364
+ info: Tilebot route successfully started.
13365
+ info: Tilebot connector listening on port 10001
13366
+ error: Axios error response data:
13367
+ error: Axios error response data:
13368
+ error: Axios error response: {"config":{"adapter":["xhr","http","fetch"],"env":{"Blob":null},"headers":{"Accept":"application/json, text/plain, */*","Accept-Encoding":"gzip, compress, deflate, br","Authorization":"JWT XXX","Content-Type":"application/json","User-Agent":"axios/1.7.7"},"maxBodyLength":-1,"maxContentLength":-1,"method":"get","timeout":0,"transformRequest":[null],"transformResponse":[null],"transitional":{"clarifyTimeoutError":false,"forcedJSONParsing":true,"silentJSONParsing":true},"url":"http://localhost:10002/projectID/integration/name/qapla","xsrfCookieName":"XSRF-TOKEN","xsrfHeaderName":"X-XSRF-TOKEN"},"data":"","headers":{"connection":"close","content-length":"0","date":"Tue, 08 Apr 2025 13:22:20 GMT","x-powered-by":"Express"},"request":{"_closed":false,"_contentLength":0,"_defaultKeepAlive":true,"_ended":true,"_events":{},"_eventsCount":7,"_hasBody":true,"_header":"GET /projectID/integration/name/qapla HTTP/1.1\r\nAccept: application/json, text/plain, */*\r\nContent-Type: application/json\r\nAuthorization: JWT XXX\r\nUser-Agent: axios/1.7.7\r\nAccept-Encoding: gzip, compress, deflate, br\r\nHost: localhost:10002\r\nConnection: close\r\n\r\n","_headerSent":true,"_keepAliveTimeout":0,"_last":true,"_redirectable":{"_currentRequest":"[Circular]","_currentUrl":"http://localhost:10002/projectID/integration/name/qapla","_ended":true,"_ending":true,"_events":{},"_eventsCount":3,"_options":{"agents":{},"beforeRedirects":{},"headers":{"Accept":"application/json, text/plain, */*","Accept-Encoding":"gzip, compress, deflate, br","Authorization":"JWT XXX","Content-Type":"application/json","User-Agent":"axios/1.7.7"},"hostname":"localhost","maxBodyLength":null,"maxRedirects":21,"method":"GET","nativeProtocols":{"http:":{"METHODS":["ACL","BIND","CHECKOUT","CONNECT","COPY","DELETE","GET","HEAD","LINK","LOCK","M-SEARCH","MERGE","MKACTIVITY","MKCALENDAR","MKCOL","MOVE","NOTIFY","OPTIONS","PATCH","POST","PROPFIND","PROPPATCH","PURGE","PUT","REBIND","REPORT","SEARCH","SOURCE","SUBSCRIBE","TRACE","UNBIND","UNLINK","UNLOCK","UNSUBSCRIBE"],"STATUS_CODES":{"100":"Continue","101":"Switching Protocols","102":"Processing","103":"Early Hints","200":"OK","201":"Created","202":"Accepted","203":"Non-Authoritative Information","204":"No Content","205":"Reset Content","206":"Partial Content","207":"Multi-Status","208":"Already Reported","226":"IM Used","300":"Multiple Choices","301":"Moved Permanently","302":"Found","303":"See Other","304":"Not Modified","305":"Use Proxy","307":"Temporary Redirect","308":"Permanent Redirect","400":"Bad Request","401":"Unauthorized","402":"Payment Required","403":"Forbidden","404":"Not Found","405":"Method Not Allowed","406":"Not Acceptable","407":"Proxy Authentication Required","408":"Request Timeout","409":"Conflict","410":"Gone","411":"Length Required","412":"Precondition Failed","413":"Payload Too Large","414":"URI Too Long","415":"Unsupported Media Type","416":"Range Not Satisfiable","417":"Expectation Failed","418":"I'm a Teapot","421":"Misdirected Request","422":"Unprocessable Entity","423":"Locked","424":"Failed Dependency","425":"Too Early","426":"Upgrade Required","428":"Precondition Required","429":"Too Many Requests","431":"Request Header Fields Too Large","451":"Unavailable For Legal Reasons","500":"Internal Server Error","501":"Not Implemented","502":"Bad Gateway","503":"Service Unavailable","504":"Gateway Timeout","505":"HTTP Version Not Supported","506":"Variant Also Negotiates","507":"Insufficient Storage","508":"Loop Detected","509":"Bandwidth Limit Exceeded","510":"Not Extended","511":"Network Authentication Required"},"globalAgent":{"_events":{},"_eventsCount":2,"defaultPort":80,"freeSockets":{},"keepAlive":false,"keepAliveMsecs":1000,"maxFreeSockets":256,"maxSockets":null,"maxTotalSockets":null,"options":{"path":null},"protocol":"http:","requests":{},"scheduling":"lifo","sockets":{"localhost:10002:":[{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null}]},"totalSocketCount":1},"maxHeaderSize":16384},"https:":{"globalAgent":{"_events":{},"_eventsCount":2,"_sessionCache":{"list":[],"map":{}},"defaultPort":443,"freeSockets":{},"keepAlive":false,"keepAliveMsecs":1000,"maxCachedSessions":100,"maxFreeSockets":256,"maxSockets":null,"maxTotalSockets":null,"options":{"path":null},"protocol":"https:","requests":{},"scheduling":"lifo","sockets":{},"totalSocketCount":0}}},"path":"/projectID/integration/name/qapla","pathname":"/projectID/integration/name/qapla","port":"10002","protocol":"http:"},"_redirectCount":0,"_redirects":[],"_requestBodyBuffers":[],"_requestBodyLength":0,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":true,"defaultEncoding":"utf8","destroyed":false,"emitClose":true,"ended":false,"ending":false,"errorEmitted":false,"errored":null,"finalCalled":false,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":0,"prefinished":false,"sync":true,"writecb":null,"writelen":0,"writing":false}},"_removedConnection":false,"_removedContLen":false,"_removedTE":false,"_trailer":"","aborted":false,"agent":{"_events":{},"_eventsCount":2,"defaultPort":80,"freeSockets":{},"keepAlive":false,"keepAliveMsecs":1000,"maxFreeSockets":256,"maxSockets":null,"maxTotalSockets":null,"options":{"path":null},"protocol":"http:","requests":{},"scheduling":"lifo","sockets":{"localhost:10002:":[{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null}]},"totalSocketCount":1},"chunkedEncoding":false,"destroyed":false,"finished":true,"host":"localhost","maxHeadersCount":null,"maxRequestsOnConnectionReached":false,"method":"GET","outputData":[],"outputSize":0,"parser":null,"path":"/projectID/integration/name/qapla","protocol":"http:","res":{"_consuming":false,"_dumped":false,"_events":{"end":[null,null]},"_eventsCount":4,"_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":true,"closed":true,"constructed":true,"dataEmitted":false,"decoder":null,"defaultEncoding":"utf8","destroyed":true,"emitClose":true,"emittedReadable":false,"encoding":null,"endEmitted":true,"ended":true,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":false,"objectMode":false,"pipes":[],"readableListening":false,"reading":false,"readingMore":true,"resumeScheduled":false,"sync":true},"aborted":false,"client":{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null},"complete":true,"httpVersion":"1.1","httpVersionMajor":1,"httpVersionMinor":1,"method":null,"rawHeaders":["X-Powered-By","Express","Date","Tue, 08 Apr 2025 13:22:20 GMT","Connection","close","Content-Length","0"],"rawTrailers":[],"redirects":[],"req":"[Circular]","responseUrl":"http://localhost:10002/projectID/integration/name/qapla","socket":{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null},"statusCode":404,"statusMessage":"Not Found","upgrade":false,"url":""},"reusedSocket":false,"sendDate":false,"shouldKeepAlive":false,"socket":{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null},"strictContentLength":false,"timeoutCb":null,"upgradeOrConnect":false,"useChunkedEncodingByDefault":false,"writable":true},"status":404,"statusText":"Not Found"}
13369
+ info: (Tilebot) Starting Tilebot..
13370
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13371
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13372
+ info: (Tilebot) Log: false
13373
+ info: (Tilebot) MAX_STEPS: 1000
13374
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13375
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13376
+ info: (Tilebot) Using static bots
13377
+ info: (Tilebot) Connecting Redis...
13378
+ info: (Tilebot) Redis connected
13379
+ info: (Tilebot) Tilebot started
13380
+ info: Starting tilebot server...
13381
+ info: (Tilebot) Starting Tilebot..
13382
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13383
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13384
+ info: (Tilebot) Log: false
13385
+ info: (Tilebot) MAX_STEPS: 1000
13386
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13387
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13388
+ info: (Tilebot) Using static bots
13389
+ info: (Tilebot) Connecting Redis...
13390
+ info: (Tilebot) Redis connected
13391
+ info: (Tilebot) Tilebot started
13392
+ info: Tilebot route successfully started.
13393
+ info: Tilebot connector listening on port 10001
13394
+ info: Starting tilebot server...
13395
+ info: (Tilebot) Starting Tilebot..
13396
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13397
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13398
+ info: (Tilebot) Log: false
13399
+ info: (Tilebot) MAX_STEPS: 1000
13400
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13401
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13402
+ info: (Tilebot) Using static bots
13403
+ info: (Tilebot) Connecting Redis...
13404
+ info: (Tilebot) Redis connected
13405
+ info: (Tilebot) Tilebot started
13406
+ info: Tilebot route successfully started.
13407
+ info: Tilebot connector listening on port 10001
13408
+ info: Starting tilebot server...
13409
+ info: (Tilebot) Starting Tilebot..
13410
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13411
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13412
+ info: (Tilebot) Log: false
13413
+ info: (Tilebot) MAX_STEPS: 1000
13414
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13415
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13416
+ info: (Tilebot) Using static bots
13417
+ info: (Tilebot) Connecting Redis...
13418
+ info: (Tilebot) Redis connected
13419
+ info: (Tilebot) Tilebot started
13420
+ info: Tilebot route successfully started.
13421
+ info: Tilebot connector listening on port 10001
13422
+ info: Wait a little (~2s)...
13423
+ info: Wait a little (~3s)...
13424
+ info: Starting tilebot server...
13425
+ info: (Tilebot) Starting Tilebot..
13426
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13427
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13428
+ info: (Tilebot) Log: false
13429
+ info: (Tilebot) MAX_STEPS: 1000
13430
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13431
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13432
+ info: (Tilebot) Using static bots
13433
+ info: (Tilebot) Connecting Redis...
13434
+ info: (Tilebot) Redis connected
13435
+ info: (Tilebot) Tilebot started
13436
+ info: Tilebot route successfully started.
13437
+ info: Tilebot connector listening on port 10001
13438
+ info: Starting tilebot server...
13439
+ info: (Tilebot) Starting Tilebot..
13440
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13441
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10002/modules/tilebot
13442
+ info: (Tilebot) Log: false
13443
+ info: (Tilebot) MAX_STEPS: 1000
13444
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13445
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13446
+ info: (Tilebot) Using static bots
13447
+ info: (Tilebot) Connecting Redis...
13448
+ info: (Tilebot) Redis connected
13449
+ info: (Tilebot) Tilebot started
13450
+ info: Tilebot route successfully started.
13451
+ info: Tilebot connector listening on port 10001
13452
+ info: Starting tilebot server...
13453
+ info: (Tilebot) Starting Tilebot..
13454
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13455
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13456
+ info: (Tilebot) Log: false
13457
+ info: (Tilebot) MAX_STEPS: 1000
13458
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13459
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13460
+ info: (Tilebot) Using static bots
13461
+ info: (Tilebot) Connecting Redis...
13462
+ info: (Tilebot) Redis connected
13463
+ info: (Tilebot) Tilebot started
13464
+ info: Tilebot route successfully started.
13465
+ info: Tilebot connector listening on port 10001
13466
+ info: Starting tilebot server...
13467
+ info: (Tilebot) Starting Tilebot..
13468
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13469
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13470
+ info: (Tilebot) Log: false
13471
+ info: (Tilebot) MAX_STEPS: 1000
13472
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13473
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13474
+ info: (Tilebot) Using static bots
13475
+ info: (Tilebot) Connecting Redis...
13476
+ info: (Tilebot) Redis connected
13477
+ info: (Tilebot) Tilebot started
13478
+ info: Tilebot route successfully started.
13479
+ info: Tilebot connector listening on port 10001
13480
+ error: DirWebRequestV2 Error parsing webRequest jsonBody: "{\"name\":myname,\"email\":\"myemail\"}"
13481
+ Error: {}
13482
+ info: Starting tilebot server...
13483
+ info: (Tilebot) Starting Tilebot..
13484
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13485
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13486
+ info: (Tilebot) Log: false
13487
+ info: (Tilebot) MAX_STEPS: 1000
13488
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13489
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13490
+ info: (Tilebot) Using static bots
13491
+ info: (Tilebot) Connecting Redis...
13492
+ info: (Tilebot) Redis connected
13493
+ info: (Tilebot) Tilebot started
13494
+ info: Tilebot route successfully started.
13495
+ info: Tilebot connector listening on port 10001
13496
+ info: Redis: value; value: 1
13497
+ info: Redis: value; value: Andrea
13498
+ info: Redis: value; value: Luis
13499
+ info: Redis: value; value: [object Object]
13500
+ info: Redis: value; value: [object Object]
13501
+ info: Redis: total; value: 4
13502
+ info: Redis: total; value: 4
13503
+ info: Redis: total; value: Francesco Latino Tiledesk
13504
+ info: Redis: summary; value: andrea sponziello tiledesk
13505
+ error: (DirSetAttribute) Invalid action: {"0":{"argument":"operands","instance":{"operators":["addAsNumber","subtractAsNumber","divideAsNumber","multiplyAsNumber"]},"message":"requires property \"operands\"","name":"required","path":["operation"],"property":"instance.operation","schema":{"additionalProperties":false,"properties":{"operands":{"items":{"additionalProperties":false,"if":{"properties":{"isVariable":{"const":true}}},"properties":{"function":{"enum":["capitalizeAsString","upperCaseAsString","lowerCaseAsString","absAsNumber","ceilAsNumber","floorAsNumber","roundAsNumber"],"type":"string"},"isVariable":{"type":"boolean"},"value":{"type":"string"}},"required":["value","isVariable"],"then":{"properties":{"value":{"pattern":"^[a-zA-Z_]*[a-zA-Z_]+[a-zA-Z0-9_]*$"}}},"type":"object"},"minItems":1,"type":"array"},"operators":{"items":{"enum":["addAsNumber","addAsString","subtractAsNumber","multiplyAsNumber","divideAsNumber"],"type":"string"},"type":"array"}},"required":["operands"],"type":"object"},"stack":"instance.operation requires property \"operands\""}}
13506
+ error: (DirSetAttribute) Invalid action: {"0":{"argument":"_tdActionType","instance":{},"message":"requires property \"_tdActionType\"","name":"required","path":[],"property":"instance","schema":{"additionalProperties":false,"properties":{"_tdActionId":{"type":["string","null"]},"_tdActionTitle":{"type":["string","null"]},"_tdActionType":{"enum":["setattribute"],"type":"string"},"destination":{"type":"string"},"operation":{"additionalProperties":false,"properties":{"operands":{"items":{"additionalProperties":false,"if":{"properties":{"isVariable":{"const":true}}},"properties":{"function":{"enum":["capitalizeAsString","upperCaseAsString","lowerCaseAsString","absAsNumber","ceilAsNumber","floorAsNumber","roundAsNumber"],"type":"string"},"isVariable":{"type":"boolean"},"value":{"type":"string"}},"required":["value","isVariable"],"then":{"properties":{"value":{"pattern":"^[a-zA-Z_]*[a-zA-Z_]+[a-zA-Z0-9_]*$"}}},"type":"object"},"minItems":1,"type":"array"},"operators":{"items":{"enum":["addAsNumber","addAsString","subtractAsNumber","multiplyAsNumber","divideAsNumber"],"type":"string"},"type":"array"}},"required":["operands"],"type":"object"}},"required":["_tdActionType","destination","operation"],"type":"object"},"stack":"instance requires property \"_tdActionType\""},"1":{"argument":"destination","instance":{},"message":"requires property \"destination\"","name":"required","path":[],"property":"instance","schema":{"additionalProperties":false,"properties":{"_tdActionId":{"type":["string","null"]},"_tdActionTitle":{"type":["string","null"]},"_tdActionType":{"enum":["setattribute"],"type":"string"},"destination":{"type":"string"},"operation":{"additionalProperties":false,"properties":{"operands":{"items":{"additionalProperties":false,"if":{"properties":{"isVariable":{"const":true}}},"properties":{"function":{"enum":["capitalizeAsString","upperCaseAsString","lowerCaseAsString","absAsNumber","ceilAsNumber","floorAsNumber","roundAsNumber"],"type":"string"},"isVariable":{"type":"boolean"},"value":{"type":"string"}},"required":["value","isVariable"],"then":{"properties":{"value":{"pattern":"^[a-zA-Z_]*[a-zA-Z_]+[a-zA-Z0-9_]*$"}}},"type":"object"},"minItems":1,"type":"array"},"operators":{"items":{"enum":["addAsNumber","addAsString","subtractAsNumber","multiplyAsNumber","divideAsNumber"],"type":"string"},"type":"array"}},"required":["operands"],"type":"object"}},"required":["_tdActionType","destination","operation"],"type":"object"},"stack":"instance requires property \"destination\""},"2":{"argument":"operation","instance":{},"message":"requires property \"operation\"","name":"required","path":[],"property":"instance","schema":{"additionalProperties":false,"properties":{"_tdActionId":{"type":["string","null"]},"_tdActionTitle":{"type":["string","null"]},"_tdActionType":{"enum":["setattribute"],"type":"string"},"destination":{"type":"string"},"operation":{"additionalProperties":false,"properties":{"operands":{"items":{"additionalProperties":false,"if":{"properties":{"isVariable":{"const":true}}},"properties":{"function":{"enum":["capitalizeAsString","upperCaseAsString","lowerCaseAsString","absAsNumber","ceilAsNumber","floorAsNumber","roundAsNumber"],"type":"string"},"isVariable":{"type":"boolean"},"value":{"type":"string"}},"required":["value","isVariable"],"then":{"properties":{"value":{"pattern":"^[a-zA-Z_]*[a-zA-Z_]+[a-zA-Z0-9_]*$"}}},"type":"object"},"minItems":1,"type":"array"},"operators":{"items":{"enum":["addAsNumber","addAsString","subtractAsNumber","multiplyAsNumber","divideAsNumber"],"type":"string"},"type":"array"}},"required":["operands"],"type":"object"}},"required":["_tdActionType","destination","operation"],"type":"object"},"stack":"instance requires property \"operation\""}}
13507
+ error: (DirSetAttribute) Invalid action: operators === undefined && operands.length !== 1
13508
+ error: (DirSetAttribute) Invalid action: operators.length !== operands.length - 1
13509
+ error: (DirSetAttribute) Invalid action: {"0":{"argument":"^[a-zA-Z_]*[a-zA-Z_]+[a-zA-Z0-9_]*$","instance":"inject(here);","message":"does not match pattern \"^[a-zA-Z_]*[a-zA-Z_]+[a-zA-Z0-9_]*$\"","name":"pattern","path":["operation","operands",0,"value"],"property":"instance.operation.operands[0].value","schema":{"pattern":"^[a-zA-Z_]*[a-zA-Z_]+[a-zA-Z0-9_]*$"},"stack":"instance.operation.operands[0].value does not match pattern \"^[a-zA-Z_]*[a-zA-Z_]+[a-zA-Z0-9_]*$\""}}
13510
+ error: (DirSetAttribute) Invalid action: {"0":{"argument":"^[a-zA-Z_]*[a-zA-Z_]+[a-zA-Z0-9_]*$","instance":"inject(here);","message":"does not match pattern \"^[a-zA-Z_]*[a-zA-Z_]+[a-zA-Z0-9_]*$\"","name":"pattern","path":["operation","operands",1,"value"],"property":"instance.operation.operands[1].value","schema":{"pattern":"^[a-zA-Z_]*[a-zA-Z_]+[a-zA-Z0-9_]*$"},"stack":"instance.operation.operands[1].value does not match pattern \"^[a-zA-Z_]*[a-zA-Z_]+[a-zA-Z0-9_]*$\""}}
13511
+ warn: DirIfOnlineAgents Incorrect directive:
13512
+ warn: DirIfOnlineAgents Incorrect directive:
13513
+ info: Starting tilebot server...
13514
+ info: (Tilebot) Starting Tilebot..
13515
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13516
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13517
+ info: (Tilebot) Log: false
13518
+ info: (Tilebot) MAX_STEPS: 1000
13519
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13520
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13521
+ info: (Tilebot) Using static bots
13522
+ info: (Tilebot) Connecting Redis...
13523
+ info: (Tilebot) Redis connected
13524
+ info: (Tilebot) Tilebot started
13525
+ info: Tilebot route successfully started.
13526
+ info: Tilebot connector listening on port 10001
13527
+ info: Starting tilebot server...
13528
+ info: (Tilebot) Starting Tilebot..
13529
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13530
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13531
+ info: (Tilebot) Log: false
13532
+ info: (Tilebot) MAX_STEPS: 1000
13533
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13534
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13535
+ info: (Tilebot) Using static bots
13536
+ info: (Tilebot) Connecting Redis...
13537
+ info: (Tilebot) Redis connected
13538
+ info: (Tilebot) Tilebot started
13539
+ info: Tilebot route successfully started.
13540
+ info: Tilebot connector listening on port 10001
13541
+ error: (TiledeskExpression) evaluateJavascriptExpression error: Unexpected token ']' - while evaluating the following expression: '$data.andrea[].{ === undefined'
13542
+ error: (TiledeskExpression) evaluateJavascriptExpression error: Unexpected token ']' - while evaluating the following expression: 'Number($data.varName) === Number($data.var[].{)'
13543
+ error: (TiledeskExpression) evaluateJavascriptExpression error: missing ) after argument list - while evaluating the following expression: 'Number($data.age()...[) < Number("10")'
13544
+ error: (TiledeskExpression)Condition evaluation stopped because of invalid operand2 [object Object]
13545
+ error: (TiledeskExpression) Condition evaluation stopped because of invalid operand1 11height
13546
+ error: (TiledeskExpression) Invalid JSON Group expression {"conditions":[{"operand1":"11height","operand2":{"type":"const","value":"1"},"operator":"greaterThan","type":"condition"},{"operator":"AND","type":"operator"},{"operand1":"name","operand2":{"type":"const","value":"And"},"operator":"startsWith","type":"condition"}],"type":"expression"}
13547
+ info: Starting tilebot server...
13548
+ info: (Tilebot) Starting Tilebot..
13549
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13550
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13551
+ info: (Tilebot) Log: false
13552
+ info: (Tilebot) MAX_STEPS: 1000
13553
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13554
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13555
+ info: (Tilebot) Using static bots
13556
+ info: (Tilebot) Connecting Redis...
13557
+ info: (Tilebot) Redis connected
13558
+ info: (Tilebot) Tilebot started
13559
+ info: Tilebot route successfully started.
13560
+ info: Tilebot connector listening on port...
13561
+ info: Starting tilebot server...
13562
+ info: (Tilebot) Starting Tilebot..
13563
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13564
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13565
+ info: (Tilebot) Log: false
13566
+ info: (Tilebot) MAX_STEPS: 1000
13567
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13568
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13569
+ info: (Tilebot) Using static bots
13570
+ info: (Tilebot) Connecting Redis...
13571
+ info: (Tilebot) Redis connected
13572
+ info: (Tilebot) Tilebot started
13573
+ info: Tilebot route successfully started.
13574
+ info: Tilebot connector listening on port
13575
+ error: (TiledeskChatbot) An error occurred during exact match: Cannot read properties of undefined (reading 'this is an audio file example') {"stack":"TypeError: Cannot read properties of undefined (reading 'this is an audio file example')\n at MockBotsDataSource.getByExactMatch (/Users/gabriele95/Desktop/Tiledesk/tiledesk-chatbot/tybotRoute/engine/mock/MockBotsDataSource.js:41:71)\n at /Users/gabriele95/Desktop/Tiledesk/tiledesk-chatbot/tybotRoute/engine/TiledeskChatbot.js:184:42\n at runMicrotasks (<anonymous>)\n at processTicksAndRejections (node:internal/process/task_queues:96:5)"}
13576
+ error: (TiledeskChatbot) An error occurred on IntentsFinder.decode() (/model/parse error):this.intentsFinder.decode is not a function
13577
+ info: Starting tilebot server...
13578
+ info: (Tilebot) Starting Tilebot..
13579
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13580
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13581
+ info: (Tilebot) Log: false
13582
+ info: (Tilebot) MAX_STEPS: 1000
13583
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13584
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13585
+ info: (Tilebot) Using static bots
13586
+ info: (Tilebot) Connecting Redis...
13587
+ info: (Tilebot) Redis connected
13588
+ info: (Tilebot) Tilebot started
13589
+ info: Tilebot route successfully started.
13590
+ info: Tilebot connector listening on port
13591
+ error: DirReply Error sending reply: Request failed with status code 404 {"config":{"data":"{\"_tdActionType\":\"reply\",\"text\":\"I didn't understand. Can you rephrase your question?\",\"attributes\":{\"commands\":[{\"type\":\"wait\",\"time\":500},{\"type\":\"message\",\"message\":{\"type\":\"text\",\"text\":\"I didn't understand. Can you rephrase your question?\"}}],\"fillParams\":true,\"intentName\":\"defaultFallback\",\"flowAttributes\":{\"lastUserDocumentAsAttachmentURL\":\"http://my-audio-url.wav\",\"lastUserDocumentAsInlineURL\":\"http://my-audio-url.wav\",\"now\":\"2025-04-08T13:24:18.972Z\",\"UUID\":\"f3f17cb9a52341e7ba05bd4089f03457\",\"UUIDv4\":\"0bc6db0c-f4c4-4d58-8e57-3d33d2f3a6df\"}},\"senderFullname\":\"Echo bot\"}","headers":{"Accept":"application/json, text/plain, */*","Authorization":"JWT XXX","Content-Length":584,"Content-Type":"application/json","User-Agent":"axios/0.21.4"},"maxBodyLength":-1,"maxContentLength":-1,"method":"post","timeout":0,"transformRequest":[null],"transformResponse":[null],"transitional":{"clarifyTimeoutError":false,"forcedJSONParsing":true,"silentJSONParsing":true},"url":"http://localhost:10002/projectID/requests/support-group-projectID-cb06eb5313094a2ba7788393b6008ab4/messages","xsrfCookieName":"XSRF-TOKEN","xsrfHeaderName":"X-XSRF-TOKEN"},"stack":"Error: Request failed with status code 404\n at createError (/Users/gabriele95/Desktop/Tiledesk/tiledesk-chatbot/tybotRoute/node_modules/@tiledesk/tiledesk-client/node_modules/axios/lib/core/createError.js:16:15)\n at settle (/Users/gabriele95/Desktop/Tiledesk/tiledesk-chatbot/tybotRoute/node_modules/@tiledesk/tiledesk-client/node_modules/axios/lib/core/settle.js:17:12)\n at IncomingMessage.handleStreamEnd (/Users/gabriele95/Desktop/Tiledesk/tiledesk-chatbot/tybotRoute/node_modules/@tiledesk/tiledesk-client/node_modules/axios/lib/adapters/http.js:269:11)\n at IncomingMessage.emit (node:events:525:35)\n at endReadableNT (node:internal/streams/readable:1358:12)\n at processTicksAndRejections (node:internal/process/task_queues:83:21)"}
13592
+ info: Starting tilebot server...
13593
+ info: (Tilebot) Starting Tilebot..
13594
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13595
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13596
+ info: (Tilebot) Log: false
13597
+ info: (Tilebot) MAX_STEPS: 1000
13598
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13599
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13600
+ info: (Tilebot) Using static bots
13601
+ info: (Tilebot) Connecting Redis...
13602
+ info: (Tilebot) Redis connected
13603
+ info: (Tilebot) Tilebot started
13604
+ info: Tilebot route successfully started.
13605
+ info: Tilebot connector listening on port
13606
+ error: Axios error response data: Integration not found for model undefined
13607
+ error: Error: DirAiPrompt llm key not found in integrations
13608
+ error: Axios error response data: {"detail":[{"loc":["string",0],"msg":"this is the error message","type":"string"}]}
13609
+ error: DirAiPrompt openai err: Request failed with status code 422 {"code":"ERR_BAD_REQUEST","config":{"adapter":["xhr","http","fetch"],"data":"{\"question\":\"this is the question\",\"llm\":\"myllm\",\"model\":\"llmmodel\",\"llm_key\":\"example_api_key\",\"temperature\":0.7,\"max_tokens\":512}","env":{"Blob":null},"headers":{"Accept":"application/json, text/plain, */*","Accept-Encoding":"gzip, compress, deflate, br","Content-Length":"131","Content-Type":"application/json","User-Agent":"axios/1.7.7"},"maxBodyLength":-1,"maxContentLength":-1,"method":"post","timeout":0,"transformRequest":[null],"transformResponse":[null],"transitional":{"clarifyTimeoutError":false,"forcedJSONParsing":true,"silentJSONParsing":true},"url":"http://localhost:10002/api/ask","xsrfCookieName":"XSRF-TOKEN","xsrfHeaderName":"X-XSRF-TOKEN"},"name":"AxiosError","request":{"_closed":false,"_contentLength":"131","_defaultKeepAlive":true,"_ended":true,"_events":{},"_eventsCount":7,"_hasBody":true,"_header":"POST /api/ask HTTP/1.1\r\nAccept: application/json, text/plain, */*\r\nContent-Type: application/json\r\nUser-Agent: axios/1.7.7\r\nContent-Length: 131\r\nAccept-Encoding: gzip, compress, deflate, br\r\nHost: localhost:10002\r\nConnection: close\r\n\r\n","_headerSent":true,"_keepAliveTimeout":0,"_last":true,"_redirectable":{"_currentRequest":"[Circular]","_currentUrl":"http://localhost:10002/api/ask","_ended":true,"_ending":true,"_events":{},"_eventsCount":3,"_options":{"agents":{},"beforeRedirects":{},"headers":{"Accept":"application/json, text/plain, */*","Accept-Encoding":"gzip, compress, deflate, br","Content-Length":"131","Content-Type":"application/json","User-Agent":"axios/1.7.7"},"hostname":"localhost","maxBodyLength":null,"maxRedirects":21,"method":"POST","nativeProtocols":{"http:":{"METHODS":["ACL","BIND","CHECKOUT","CONNECT","COPY","DELETE","GET","HEAD","LINK","LOCK","M-SEARCH","MERGE","MKACTIVITY","MKCALENDAR","MKCOL","MOVE","NOTIFY","OPTIONS","PATCH","POST","PROPFIND","PROPPATCH","PURGE","PUT","REBIND","REPORT","SEARCH","SOURCE","SUBSCRIBE","TRACE","UNBIND","UNLINK","UNLOCK","UNSUBSCRIBE"],"STATUS_CODES":{"100":"Continue","101":"Switching Protocols","102":"Processing","103":"Early Hints","200":"OK","201":"Created","202":"Accepted","203":"Non-Authoritative Information","204":"No Content","205":"Reset Content","206":"Partial Content","207":"Multi-Status","208":"Already Reported","226":"IM Used","300":"Multiple Choices","301":"Moved Permanently","302":"Found","303":"See Other","304":"Not Modified","305":"Use Proxy","307":"Temporary Redirect","308":"Permanent Redirect","400":"Bad Request","401":"Unauthorized","402":"Payment Required","403":"Forbidden","404":"Not Found","405":"Method Not Allowed","406":"Not Acceptable","407":"Proxy Authentication Required","408":"Request Timeout","409":"Conflict","410":"Gone","411":"Length Required","412":"Precondition Failed","413":"Payload Too Large","414":"URI Too Long","415":"Unsupported Media Type","416":"Range Not Satisfiable","417":"Expectation Failed","418":"I'm a Teapot","421":"Misdirected Request","422":"Unprocessable Entity","423":"Locked","424":"Failed Dependency","425":"Too Early","426":"Upgrade Required","428":"Precondition Required","429":"Too Many Requests","431":"Request Header Fields Too Large","451":"Unavailable For Legal Reasons","500":"Internal Server Error","501":"Not Implemented","502":"Bad Gateway","503":"Service Unavailable","504":"Gateway Timeout","505":"HTTP Version Not Supported","506":"Variant Also Negotiates","507":"Insufficient Storage","508":"Loop Detected","509":"Bandwidth Limit Exceeded","510":"Not Extended","511":"Network Authentication Required"},"globalAgent":{"_events":{},"_eventsCount":2,"defaultPort":80,"freeSockets":{},"keepAlive":false,"keepAliveMsecs":1000,"maxFreeSockets":256,"maxSockets":null,"maxTotalSockets":null,"options":{"path":null},"protocol":"http:","requests":{},"scheduling":"lifo","sockets":{"localhost:10002:":[{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null}]},"totalSocketCount":1},"maxHeaderSize":16384},"https:":{"globalAgent":{"_events":{},"_eventsCount":2,"_sessionCache":{"list":[],"map":{}},"defaultPort":443,"freeSockets":{},"keepAlive":false,"keepAliveMsecs":1000,"maxCachedSessions":100,"maxFreeSockets":256,"maxSockets":null,"maxTotalSockets":null,"options":{"path":null},"protocol":"https:","requests":{},"scheduling":"lifo","sockets":{},"totalSocketCount":0}}},"path":"/api/ask","pathname":"/api/ask","port":"10002","protocol":"http:"},"_redirectCount":0,"_redirects":[],"_requestBodyBuffers":[],"_requestBodyLength":131,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":true,"defaultEncoding":"utf8","destroyed":false,"emitClose":true,"ended":false,"ending":false,"errorEmitted":false,"errored":null,"finalCalled":false,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":0,"prefinished":false,"sync":true,"writecb":null,"writelen":0,"writing":false}},"_removedConnection":false,"_removedContLen":false,"_removedTE":false,"_trailer":"","aborted":false,"agent":{"_events":{},"_eventsCount":2,"defaultPort":80,"freeSockets":{},"keepAlive":false,"keepAliveMsecs":1000,"maxFreeSockets":256,"maxSockets":null,"maxTotalSockets":null,"options":{"path":null},"protocol":"http:","requests":{},"scheduling":"lifo","sockets":{"localhost:10002:":[{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null}]},"totalSocketCount":1},"chunkedEncoding":false,"destroyed":false,"finished":true,"host":"localhost","maxHeadersCount":null,"maxRequestsOnConnectionReached":false,"method":"POST","outputData":[],"outputSize":0,"parser":null,"path":"/api/ask","protocol":"http:","res":{"_consuming":false,"_dumped":false,"_events":{"end":[null,null]},"_eventsCount":4,"_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":true,"closed":true,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":true,"emitClose":true,"emittedReadable":false,"encoding":null,"endEmitted":true,"ended":true,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":false,"objectMode":false,"pipes":[],"readableListening":false,"reading":false,"readingMore":true,"resumeScheduled":false,"sync":true},"aborted":false,"client":{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null},"complete":true,"httpVersion":"1.1","httpVersionMajor":1,"httpVersionMinor":1,"method":null,"rawHeaders":["X-Powered-By","Express","Content-Type","application/json; charset=utf-8","Content-Length","83","ETag","W/\"53-r1gE0xIC+8fgNRuH768xfjuFcI8\"","Date","Tue, 08 Apr 2025 13:24:19 GMT","Connection","close"],"rawTrailers":[],"redirects":[],"req":"[Circular]","responseUrl":"http://localhost:10002/api/ask","socket":{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null},"statusCode":422,"statusMessage":"Unprocessable Entity","upgrade":false,"url":""},"reusedSocket":false,"sendDate":false,"shouldKeepAlive":false,"socket":{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null},"strictContentLength":false,"timeoutCb":null,"upgradeOrConnect":false,"useChunkedEncodingByDefault":true,"writable":true},"response":{"config":{"adapter":["xhr","http","fetch"],"data":"{\"question\":\"this is the question\",\"llm\":\"myllm\",\"model\":\"llmmodel\",\"llm_key\":\"example_api_key\",\"temperature\":0.7,\"max_tokens\":512}","env":{"Blob":null},"headers":{"Accept":"application/json, text/plain, */*","Accept-Encoding":"gzip, compress, deflate, br","Content-Length":"131","Content-Type":"application/json","User-Agent":"axios/1.7.7"},"maxBodyLength":-1,"maxContentLength":-1,"method":"post","timeout":0,"transformRequest":[null],"transformResponse":[null],"transitional":{"clarifyTimeoutError":false,"forcedJSONParsing":true,"silentJSONParsing":true},"url":"http://localhost:10002/api/ask","xsrfCookieName":"XSRF-TOKEN","xsrfHeaderName":"X-XSRF-TOKEN"},"data":{"detail":[{"loc":["string",0],"msg":"this is the error message","type":"string"}]},"headers":{"connection":"close","content-length":"83","content-type":"application/json; charset=utf-8","date":"Tue, 08 Apr 2025 13:24:19 GMT","etag":"W/\"53-r1gE0xIC+8fgNRuH768xfjuFcI8\"","x-powered-by":"Express"},"request":{"_closed":false,"_contentLength":"131","_defaultKeepAlive":true,"_ended":true,"_events":{},"_eventsCount":7,"_hasBody":true,"_header":"POST /api/ask HTTP/1.1\r\nAccept: application/json, text/plain, */*\r\nContent-Type: application/json\r\nUser-Agent: axios/1.7.7\r\nContent-Length: 131\r\nAccept-Encoding: gzip, compress, deflate, br\r\nHost: localhost:10002\r\nConnection: close\r\n\r\n","_headerSent":true,"_keepAliveTimeout":0,"_last":true,"_redirectable":{"_currentRequest":"[Circular]","_currentUrl":"http://localhost:10002/api/ask","_ended":true,"_ending":true,"_events":{},"_eventsCount":3,"_options":{"agents":{},"beforeRedirects":{},"headers":{"Accept":"application/json, text/plain, */*","Accept-Encoding":"gzip, compress, deflate, br","Content-Length":"131","Content-Type":"application/json","User-Agent":"axios/1.7.7"},"hostname":"localhost","maxBodyLength":null,"maxRedirects":21,"method":"POST","nativeProtocols":{"http:":{"METHODS":["ACL","BIND","CHECKOUT","CONNECT","COPY","DELETE","GET","HEAD","LINK","LOCK","M-SEARCH","MERGE","MKACTIVITY","MKCALENDAR","MKCOL","MOVE","NOTIFY","OPTIONS","PATCH","POST","PROPFIND","PROPPATCH","PURGE","PUT","REBIND","REPORT","SEARCH","SOURCE","SUBSCRIBE","TRACE","UNBIND","UNLINK","UNLOCK","UNSUBSCRIBE"],"STATUS_CODES":{"100":"Continue","101":"Switching Protocols","102":"Processing","103":"Early Hints","200":"OK","201":"Created","202":"Accepted","203":"Non-Authoritative Information","204":"No Content","205":"Reset Content","206":"Partial Content","207":"Multi-Status","208":"Already Reported","226":"IM Used","300":"Multiple Choices","301":"Moved Permanently","302":"Found","303":"See Other","304":"Not Modified","305":"Use Proxy","307":"Temporary Redirect","308":"Permanent Redirect","400":"Bad Request","401":"Unauthorized","402":"Payment Required","403":"Forbidden","404":"Not Found","405":"Method Not Allowed","406":"Not Acceptable","407":"Proxy Authentication Required","408":"Request Timeout","409":"Conflict","410":"Gone","411":"Length Required","412":"Precondition Failed","413":"Payload Too Large","414":"URI Too Long","415":"Unsupported Media Type","416":"Range Not Satisfiable","417":"Expectation Failed","418":"I'm a Teapot","421":"Misdirected Request","422":"Unprocessable Entity","423":"Locked","424":"Failed Dependency","425":"Too Early","426":"Upgrade Required","428":"Precondition Required","429":"Too Many Requests","431":"Request Header Fields Too Large","451":"Unavailable For Legal Reasons","500":"Internal Server Error","501":"Not Implemented","502":"Bad Gateway","503":"Service Unavailable","504":"Gateway Timeout","505":"HTTP Version Not Supported","506":"Variant Also Negotiates","507":"Insufficient Storage","508":"Loop Detected","509":"Bandwidth Limit Exceeded","510":"Not Extended","511":"Network Authentication Required"},"globalAgent":{"_events":{},"_eventsCount":2,"defaultPort":80,"freeSockets":{},"keepAlive":false,"keepAliveMsecs":1000,"maxFreeSockets":256,"maxSockets":null,"maxTotalSockets":null,"options":{"path":null},"protocol":"http:","requests":{},"scheduling":"lifo","sockets":{"localhost:10002:":[{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null}]},"totalSocketCount":1},"maxHeaderSize":16384},"https:":{"globalAgent":{"_events":{},"_eventsCount":2,"_sessionCache":{"list":[],"map":{}},"defaultPort":443,"freeSockets":{},"keepAlive":false,"keepAliveMsecs":1000,"maxCachedSessions":100,"maxFreeSockets":256,"maxSockets":null,"maxTotalSockets":null,"options":{"path":null},"protocol":"https:","requests":{},"scheduling":"lifo","sockets":{},"totalSocketCount":0}}},"path":"/api/ask","pathname":"/api/ask","port":"10002","protocol":"http:"},"_redirectCount":0,"_redirects":[],"_requestBodyBuffers":[],"_requestBodyLength":131,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":true,"defaultEncoding":"utf8","destroyed":false,"emitClose":true,"ended":false,"ending":false,"errorEmitted":false,"errored":null,"finalCalled":false,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":0,"prefinished":false,"sync":true,"writecb":null,"writelen":0,"writing":false}},"_removedConnection":false,"_removedContLen":false,"_removedTE":false,"_trailer":"","aborted":false,"agent":{"_events":{},"_eventsCount":2,"defaultPort":80,"freeSockets":{},"keepAlive":false,"keepAliveMsecs":1000,"maxFreeSockets":256,"maxSockets":null,"maxTotalSockets":null,"options":{"path":null},"protocol":"http:","requests":{},"scheduling":"lifo","sockets":{"localhost:10002:":[{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null}]},"totalSocketCount":1},"chunkedEncoding":false,"destroyed":false,"finished":true,"host":"localhost","maxHeadersCount":null,"maxRequestsOnConnectionReached":false,"method":"POST","outputData":[],"outputSize":0,"parser":null,"path":"/api/ask","protocol":"http:","res":{"_consuming":false,"_dumped":false,"_events":{"end":[null,null]},"_eventsCount":4,"_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":true,"closed":true,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":true,"emitClose":true,"emittedReadable":false,"encoding":null,"endEmitted":true,"ended":true,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":false,"objectMode":false,"pipes":[],"readableListening":false,"reading":false,"readingMore":true,"resumeScheduled":false,"sync":true},"aborted":false,"client":{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null},"complete":true,"httpVersion":"1.1","httpVersionMajor":1,"httpVersionMinor":1,"method":null,"rawHeaders":["X-Powered-By","Express","Content-Type","application/json; charset=utf-8","Content-Length","83","ETag","W/\"53-r1gE0xIC+8fgNRuH768xfjuFcI8\"","Date","Tue, 08 Apr 2025 13:24:19 GMT","Connection","close"],"rawTrailers":[],"redirects":[],"req":"[Circular]","responseUrl":"http://localhost:10002/api/ask","socket":{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null},"statusCode":422,"statusMessage":"Unprocessable Entity","upgrade":false,"url":""},"reusedSocket":false,"sendDate":false,"shouldKeepAlive":false,"socket":{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null},"strictContentLength":false,"timeoutCb":null,"upgradeOrConnect":false,"useChunkedEncodingByDefault":true,"writable":true},"status":422,"statusText":"Unprocessable Entity"},"stack":"AxiosError: Request failed with status code 422\n at settle (/Users/gabriele95/Desktop/Tiledesk/tiledesk-chatbot/tybotRoute/node_modules/axios/dist/node/axios.cjs:2019:12)\n at IncomingMessage.handleStreamEnd (/Users/gabriele95/Desktop/Tiledesk/tiledesk-chatbot/tybotRoute/node_modules/axios/dist/node/axios.cjs:3135:11)\n at IncomingMessage.emit (node:events:525:35)\n at endReadableNT (node:internal/streams/readable:1358:12)\n at processTicksAndRejections (node:internal/process/task_queues:83:21)\n at Axios.request (/Users/gabriele95/Desktop/Tiledesk/tiledesk-chatbot/tybotRoute/node_modules/axios/dist/node/axios.cjs:4287:41)\n at runMicrotasks (<anonymous>)\n at processTicksAndRejections (node:internal/process/task_queues:96:5)","status":422}
13610
+ info: Starting tilebot server...
13611
+ info: (Tilebot) Starting Tilebot..
13612
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13613
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13614
+ info: (Tilebot) Log: false
13615
+ info: (Tilebot) MAX_STEPS: 1000
13616
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13617
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13618
+ info: (Tilebot) Using static bots
13619
+ info: (Tilebot) Connecting Redis...
13620
+ info: (Tilebot) Redis connected
13621
+ info: (Tilebot) Tilebot started
13622
+ info: Tilebot route successfully started.
13623
+ info: Tilebot connector listening on port 10001
13624
+ error: (DirAskGPT) Error: gptkey is mandatory
13625
+ error: Axios error response data: {"error":"no knowledge base settings found"}
13626
+ error: DirAskGPT Get kb settings error {"error":"no knowledge base settings found"}
13627
+ error: (DirAskGPT) Error: gptkey is mandatory
13628
+ error: (DirAskGPT) Error: question attribute is mandatory. Executing condition false...
13629
+ error: (DirAskGPT) Error: kbid attribute is mandatory. Executing condition false...
13630
+ info: Starting tilebot server...
13631
+ info: (Tilebot) Starting Tilebot..
13632
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13633
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13634
+ info: (Tilebot) Log: false
13635
+ info: (Tilebot) MAX_STEPS: 1000
13636
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13637
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13638
+ info: (Tilebot) Using static bots
13639
+ info: (Tilebot) Connecting Redis...
13640
+ info: (Tilebot) Redis connected
13641
+ info: (Tilebot) Tilebot started
13642
+ info: Tilebot route successfully started.
13643
+ info: Tilebot connector listening on port 10001
13644
+ error: Axios error response data: {"error":{"answer":"No answer","chat_history_dict":{},"citations":null,"content_chunks":null,"error_message":"IndexError('list index out of range')","id":null,"ids":null,"namespace":"66ec24a028a0c600130baa6a","prompt_token_size":0,"source":null,"sources":null,"success":false},"statusText":"Bad Request","success":false}
13645
+ error: DirAskGPTV2 error:
13646
+ info: DirAskGPTV2 Error: gptkey is mandatory
13647
+ error: Axios error response data: {"error":"no knowledge base settings found"}
13648
+ error: DirAskGPTV2 Get kb settings error {"error":"no knowledge base settings found"}
13649
+ info: DirAskGPTV2 Error: gptkey is mandatory
13650
+ error: DirAskGPTV2 Error: question attribute is mandatory. Executing condition false...
13651
+ info: Starting tilebot server...
13652
+ info: (Tilebot) Starting Tilebot..
13653
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13654
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13655
+ info: (Tilebot) Log: false
13656
+ info: (Tilebot) MAX_STEPS: 1000
13657
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13658
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13659
+ info: (Tilebot) Using static bots
13660
+ info: (Tilebot) Connecting Redis...
13661
+ info: (Tilebot) Redis connected
13662
+ info: (Tilebot) Tilebot started
13663
+ info: Tilebot route successfully started.
13664
+ info: Tilebot connector listening on port
13665
+ info: Starting tilebot server...
13666
+ info: (Tilebot) Starting Tilebot..
13667
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13668
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13669
+ info: (Tilebot) Log: false
13670
+ info: (Tilebot) MAX_STEPS: 1000
13671
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13672
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13673
+ info: (Tilebot) Using static bots
13674
+ info: (Tilebot) Connecting Redis...
13675
+ info: (Tilebot) Redis connected
13676
+ info: (Tilebot) Tilebot started
13677
+ info: Tilebot route successfully started.
13678
+ info: Tilebot connector listening on port
13679
+ info: Wait a little (~1s)...
13680
+ info: Starting tilebot server...
13681
+ info: (Tilebot) Starting Tilebot..
13682
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13683
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13684
+ info: (Tilebot) Log: false
13685
+ info: (Tilebot) MAX_STEPS: 1000
13686
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13687
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13688
+ info: (Tilebot) Using static bots
13689
+ info: (Tilebot) Connecting Redis...
13690
+ info: (Tilebot) Redis connected
13691
+ info: (Tilebot) Tilebot started
13692
+ info: Tilebot route successfully started.
13693
+ info: Tilebot connector listening on port
13694
+ error: (TiledeskExpression) evaluateJavascriptExpression error: jsondata2 is not defined - while evaluating the following expression: '
13695
+ console.log('a var...chatbot_name!', context.attributes.chatbot_name);
13696
+ context.setAttribute('myvar', '1');
13697
+ context.deleteAttribute('chatbot_name');
13698
+ context.deleteAttribute('conversation_id');
13699
+ context.attributes.jsondata2.c = 7;
13700
+ context.setAttribute('jsondata2', jsondata2);
13701
+ console.log("all vars:", context.allVars());
13702
+ '
13703
+ info: Starting tilebot server...
13704
+ info: (Tilebot) Starting Tilebot..
13705
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13706
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13707
+ info: (Tilebot) Log: false
13708
+ info: (Tilebot) MAX_STEPS: 1000
13709
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13710
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13711
+ info: (Tilebot) Using static bots
13712
+ info: (Tilebot) Connecting Redis...
13713
+ info: (Tilebot) Redis connected
13714
+ info: (Tilebot) Tilebot started
13715
+ info: Tilebot route successfully started.
13716
+ info: Tilebot connector listening on port
13717
+ info: Starting tilebot server...
13718
+ info: (Tilebot) Starting Tilebot..
13719
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13720
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13721
+ info: (Tilebot) Log: false
13722
+ info: (Tilebot) MAX_STEPS: 1000
13723
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13724
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13725
+ info: (Tilebot) Using static bots
13726
+ info: (Tilebot) Connecting Redis...
13727
+ info: (Tilebot) Redis connected
13728
+ info: (Tilebot) Tilebot started
13729
+ info: Tilebot route successfully started.
13730
+ info: Tilebot connector listening on port
13731
+ info: Starting tilebot server...
13732
+ info: (Tilebot) Starting Tilebot..
13733
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13734
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13735
+ info: (Tilebot) Log: false
13736
+ info: (Tilebot) MAX_STEPS: 1000
13737
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13738
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13739
+ info: (Tilebot) Using static bots
13740
+ info: (Tilebot) Connecting Redis...
13741
+ info: (Tilebot) Redis connected
13742
+ info: (Tilebot) Tilebot started
13743
+ info: Tilebot route successfully started.
13744
+ info: Tilebot connector listening on port
13745
+ error: Axios error response data: {"error":"Required parameters botid not found. Value is 'null' or 'undefined'","success":false}
13746
+ error: Axios error response data: {"error":"Required parameters botid not found. Value is 'null' or 'undefined'","success":false}
13747
+ info: Starting tilebot server...
13748
+ info: (Tilebot) Starting Tilebot..
13749
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13750
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13751
+ info: (Tilebot) Log: false
13752
+ info: (Tilebot) MAX_STEPS: 1000
13753
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13754
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13755
+ info: (Tilebot) Using static bots
13756
+ info: (Tilebot) Connecting Redis...
13757
+ info: (Tilebot) Redis connected
13758
+ info: (Tilebot) Tilebot started
13759
+ info: Tilebot route successfully started.
13760
+ info: Tilebot connector listening on port
13761
+ error: (TiledeskChatbot) An error occurred during exact match: Cannot read properties of undefined (reading '/start') {"stack":"TypeError: Cannot read properties of undefined (reading '/start')\n at MockBotsDataSource.getByExactMatch (/Users/gabriele95/Desktop/Tiledesk/tiledesk-chatbot/tybotRoute/engine/mock/MockBotsDataSource.js:41:71)\n at /Users/gabriele95/Desktop/Tiledesk/tiledesk-chatbot/tybotRoute/engine/TiledeskChatbot.js:184:42\n at runMicrotasks (<anonymous>)\n at processTicksAndRejections (node:internal/process/task_queues:96:5)"}
13762
+ error: (TiledeskChatbot) An error occurred on IntentsFinder.decode() (/model/parse error):this.intentsFinder.decode is not a function
13763
+ info: Starting tilebot server...
13764
+ info: (Tilebot) Starting Tilebot..
13765
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13766
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13767
+ info: (Tilebot) Log: false
13768
+ info: (Tilebot) MAX_STEPS: 1000
13769
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13770
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13771
+ info: (Tilebot) Using static bots
13772
+ info: (Tilebot) Connecting Redis...
13773
+ info: (Tilebot) Redis connected
13774
+ info: (Tilebot) Tilebot started
13775
+ info: Tilebot route successfully started.
13776
+ info: Tilebot connector listening on port 10001
13777
+ info: Starting tilebot server...
13778
+ info: (Tilebot) Starting Tilebot..
13779
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13780
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13781
+ info: (Tilebot) Log: false
13782
+ info: (Tilebot) MAX_STEPS: 1000
13783
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13784
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13785
+ info: (Tilebot) Using static bots
13786
+ info: (Tilebot) Connecting Redis...
13787
+ info: (Tilebot) Redis connected
13788
+ info: (Tilebot) Tilebot started
13789
+ info: Tilebot route successfully started.
13790
+ info: Tilebot connector listening on port 10001
13791
+ error: Axios error response data: {"error":{"code":null,"message":"you must provide a model parameter","param":null,"type":"invalid_request_error"}}
13792
+ error: (DirGptTask) gptkey is mandatory
13793
+ error: Axios error response data: Communication interrupted
13794
+ error: Axios error response data: <!DOCTYPE html>
13795
+ <html lang="en">
13796
+ <head>
13797
+ <meta charset="utf-8">
13798
+ <title>Error</title>
13799
+ </head>
13800
+ <body>
13801
+ <pre>Cannot GET /projectID/kbsettings</pre>
13802
+ </body>
13803
+ </html>
13804
+
13805
+ error: (DirGptTask) Get KnowledgeBase err:
13806
+ error: (DirGptTask) gptkey is mandatory
13807
+ info: Starting tilebot server...
13808
+ info: (Tilebot) Starting Tilebot..
13809
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13810
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13811
+ info: (Tilebot) Log: false
13812
+ info: (Tilebot) MAX_STEPS: 1000
13813
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13814
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13815
+ info: (Tilebot) Using static bots
13816
+ info: (Tilebot) Connecting Redis...
13817
+ info: (Tilebot) Redis connected
13818
+ info: (Tilebot) Tilebot started
13819
+ info: Tilebot route successfully started.
13820
+ info: Tilebot connector listening on port 10001
13821
+ error: (DirHubspot) err response: Contact already exists. Existing ID: 801 {"category":"CONFLICT","correlationId":"f426b0c0-1063-4aac-9859-f40108dcb09b","status":"error"}
13822
+ error: (DirHubspot) err response: Authentication credentials not found. This API supports OAuth 2.0 authentication and you can find more details at https://developers.hubspot.com/docs/methods/auth/oauth-overview {"category":"INVALID_AUTHENTICATION","correlationId":"53dab600-5de9-4aa3-b631-b0f11f43e062","status":"error"}
13823
+ error: (DirHubspot) err response: Property values were not valid: [{"isValid":false,"message":"Email address dsfsafas@ is invalid","error":"INVALID_EMAIL","name":"email"}] {"category":"VALIDATION_ERROR","correlationId":"e3d7ddf8-5d21-4059-86d0-35ae9093755c","status":"error"}
13824
+ info: Starting tilebot server...
13825
+ info: (Tilebot) Starting Tilebot..
13826
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13827
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13828
+ info: (Tilebot) Log: false
13829
+ info: (Tilebot) MAX_STEPS: 1000
13830
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13831
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13832
+ info: (Tilebot) Using static bots
13833
+ info: (Tilebot) Connecting Redis...
13834
+ info: (Tilebot) Redis connected
13835
+ info: (Tilebot) Tilebot started
13836
+ info: Tilebot route successfully started.
13837
+ info: Tilebot connector listening on port 10001
13838
+ info: Starting tilebot server...
13839
+ info: (Tilebot) Starting Tilebot..
13840
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13841
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13842
+ info: (Tilebot) Log: false
13843
+ info: (Tilebot) MAX_STEPS: 1000
13844
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13845
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13846
+ info: (Tilebot) Using static bots
13847
+ info: (Tilebot) Connecting Redis...
13848
+ info: (Tilebot) Redis connected
13849
+ info: (Tilebot) Tilebot started
13850
+ info: Tilebot route successfully started.
13851
+ info: Tilebot connector listening on port 10001
13852
+ info: Starting tilebot server...
13853
+ info: (Tilebot) Starting Tilebot..
13854
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13855
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13856
+ info: (Tilebot) Log: false
13857
+ info: (Tilebot) MAX_STEPS: 1000
13858
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13859
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13860
+ info: (Tilebot) Using static bots
13861
+ info: (Tilebot) Connecting Redis...
13862
+ info: (Tilebot) Redis connected
13863
+ info: (Tilebot) Tilebot started
13864
+ info: Tilebot route successfully started.
13865
+ info: Tilebot connector listening on port 10001
13866
+ error: (DirMake) Error: webhook_url is undefined or null or empty string:
13867
+ info: Starting tilebot server...
13868
+ info: (Tilebot) Starting Tilebot..
13869
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13870
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13871
+ info: (Tilebot) Log: false
13872
+ info: (Tilebot) MAX_STEPS: 1000
13873
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13874
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13875
+ info: (Tilebot) Using static bots
13876
+ info: (Tilebot) Connecting Redis...
13877
+ info: (Tilebot) Redis connected
13878
+ info: (Tilebot) Tilebot started
13879
+ info: Tilebot route successfully started.
13880
+ info: Tilebot connector listening on port 10001
13881
+ info: Starting tilebot server...
13882
+ info: (Tilebot) Starting Tilebot..
13883
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13884
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13885
+ info: (Tilebot) Log: false
13886
+ info: (Tilebot) MAX_STEPS: 1000
13887
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13888
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13889
+ info: (Tilebot) Using static bots
13890
+ info: (Tilebot) Connecting Redis...
13891
+ info: (Tilebot) Redis connected
13892
+ info: (Tilebot) Tilebot started
13893
+ info: Tilebot route successfully started.
13894
+ info: Tilebot connector listening on port 10001
13895
+ info: Starting tilebot server...
13896
+ info: (Tilebot) Starting Tilebot..
13897
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13898
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13899
+ info: (Tilebot) Log: false
13900
+ info: (Tilebot) MAX_STEPS: 1000
13901
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13902
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13903
+ info: (Tilebot) Using static bots
13904
+ info: (Tilebot) Connecting Redis...
13905
+ info: (Tilebot) Redis connected
13906
+ info: (Tilebot) Tilebot started
13907
+ info: Tilebot route successfully started.
13908
+ info: Tilebot connector listening on port 10001
13909
+ info: Starting tilebot server...
13910
+ info: (Tilebot) Starting Tilebot..
13911
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13912
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13913
+ info: (Tilebot) Log: false
13914
+ info: (Tilebot) MAX_STEPS: 1000
13915
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13916
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13917
+ info: (Tilebot) Using static bots
13918
+ info: (Tilebot) Connecting Redis...
13919
+ info: (Tilebot) Redis connected
13920
+ info: (Tilebot) Tilebot started
13921
+ info: Tilebot route successfully started.
13922
+ info: Tilebot connector listening on port 10001
13923
+ info: Starting tilebot server...
13924
+ info: (Tilebot) Starting Tilebot..
13925
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13926
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13927
+ info: (Tilebot) Log: false
13928
+ info: (Tilebot) MAX_STEPS: 1000
13929
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13930
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13931
+ info: (Tilebot) Using static bots
13932
+ info: (Tilebot) Connecting Redis...
13933
+ info: (Tilebot) Redis connected
13934
+ info: (Tilebot) Tilebot started
13935
+ info: Tilebot route successfully started.
13936
+ info: Tilebot connector listening on port 10001
13937
+ error: Axios error response data:
13938
+ error: Axios error response data:
13939
+ error: Axios error response: {"config":{"adapter":["xhr","http","fetch"],"env":{"Blob":null},"headers":{"Accept":"application/json, text/plain, */*","Accept-Encoding":"gzip, compress, deflate, br","Authorization":"JWT XXX","Content-Type":"application/json","User-Agent":"axios/1.7.7"},"maxBodyLength":-1,"maxContentLength":-1,"method":"get","timeout":0,"transformRequest":[null],"transformResponse":[null],"transitional":{"clarifyTimeoutError":false,"forcedJSONParsing":true,"silentJSONParsing":true},"url":"http://localhost:10002/projectID/integration/name/qapla","xsrfCookieName":"XSRF-TOKEN","xsrfHeaderName":"X-XSRF-TOKEN"},"data":"","headers":{"connection":"close","content-length":"0","date":"Tue, 08 Apr 2025 13:24:21 GMT","x-powered-by":"Express"},"request":{"_closed":false,"_contentLength":0,"_defaultKeepAlive":true,"_ended":true,"_events":{},"_eventsCount":7,"_hasBody":true,"_header":"GET /projectID/integration/name/qapla HTTP/1.1\r\nAccept: application/json, text/plain, */*\r\nContent-Type: application/json\r\nAuthorization: JWT XXX\r\nUser-Agent: axios/1.7.7\r\nAccept-Encoding: gzip, compress, deflate, br\r\nHost: localhost:10002\r\nConnection: close\r\n\r\n","_headerSent":true,"_keepAliveTimeout":0,"_last":true,"_redirectable":{"_currentRequest":"[Circular]","_currentUrl":"http://localhost:10002/projectID/integration/name/qapla","_ended":true,"_ending":true,"_events":{},"_eventsCount":3,"_options":{"agents":{},"beforeRedirects":{},"headers":{"Accept":"application/json, text/plain, */*","Accept-Encoding":"gzip, compress, deflate, br","Authorization":"JWT XXX","Content-Type":"application/json","User-Agent":"axios/1.7.7"},"hostname":"localhost","maxBodyLength":null,"maxRedirects":21,"method":"GET","nativeProtocols":{"http:":{"METHODS":["ACL","BIND","CHECKOUT","CONNECT","COPY","DELETE","GET","HEAD","LINK","LOCK","M-SEARCH","MERGE","MKACTIVITY","MKCALENDAR","MKCOL","MOVE","NOTIFY","OPTIONS","PATCH","POST","PROPFIND","PROPPATCH","PURGE","PUT","REBIND","REPORT","SEARCH","SOURCE","SUBSCRIBE","TRACE","UNBIND","UNLINK","UNLOCK","UNSUBSCRIBE"],"STATUS_CODES":{"100":"Continue","101":"Switching Protocols","102":"Processing","103":"Early Hints","200":"OK","201":"Created","202":"Accepted","203":"Non-Authoritative Information","204":"No Content","205":"Reset Content","206":"Partial Content","207":"Multi-Status","208":"Already Reported","226":"IM Used","300":"Multiple Choices","301":"Moved Permanently","302":"Found","303":"See Other","304":"Not Modified","305":"Use Proxy","307":"Temporary Redirect","308":"Permanent Redirect","400":"Bad Request","401":"Unauthorized","402":"Payment Required","403":"Forbidden","404":"Not Found","405":"Method Not Allowed","406":"Not Acceptable","407":"Proxy Authentication Required","408":"Request Timeout","409":"Conflict","410":"Gone","411":"Length Required","412":"Precondition Failed","413":"Payload Too Large","414":"URI Too Long","415":"Unsupported Media Type","416":"Range Not Satisfiable","417":"Expectation Failed","418":"I'm a Teapot","421":"Misdirected Request","422":"Unprocessable Entity","423":"Locked","424":"Failed Dependency","425":"Too Early","426":"Upgrade Required","428":"Precondition Required","429":"Too Many Requests","431":"Request Header Fields Too Large","451":"Unavailable For Legal Reasons","500":"Internal Server Error","501":"Not Implemented","502":"Bad Gateway","503":"Service Unavailable","504":"Gateway Timeout","505":"HTTP Version Not Supported","506":"Variant Also Negotiates","507":"Insufficient Storage","508":"Loop Detected","509":"Bandwidth Limit Exceeded","510":"Not Extended","511":"Network Authentication Required"},"globalAgent":{"_events":{},"_eventsCount":2,"defaultPort":80,"freeSockets":{},"keepAlive":false,"keepAliveMsecs":1000,"maxFreeSockets":256,"maxSockets":null,"maxTotalSockets":null,"options":{"path":null},"protocol":"http:","requests":{},"scheduling":"lifo","sockets":{"localhost:10002:":[{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null}]},"totalSocketCount":1},"maxHeaderSize":16384},"https:":{"globalAgent":{"_events":{},"_eventsCount":2,"_sessionCache":{"list":[],"map":{}},"defaultPort":443,"freeSockets":{},"keepAlive":false,"keepAliveMsecs":1000,"maxCachedSessions":100,"maxFreeSockets":256,"maxSockets":null,"maxTotalSockets":null,"options":{"path":null},"protocol":"https:","requests":{},"scheduling":"lifo","sockets":{},"totalSocketCount":0}}},"path":"/projectID/integration/name/qapla","pathname":"/projectID/integration/name/qapla","port":"10002","protocol":"http:"},"_redirectCount":0,"_redirects":[],"_requestBodyBuffers":[],"_requestBodyLength":0,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":true,"defaultEncoding":"utf8","destroyed":false,"emitClose":true,"ended":false,"ending":false,"errorEmitted":false,"errored":null,"finalCalled":false,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":0,"prefinished":false,"sync":true,"writecb":null,"writelen":0,"writing":false}},"_removedConnection":false,"_removedContLen":false,"_removedTE":false,"_trailer":"","aborted":false,"agent":{"_events":{},"_eventsCount":2,"defaultPort":80,"freeSockets":{},"keepAlive":false,"keepAliveMsecs":1000,"maxFreeSockets":256,"maxSockets":null,"maxTotalSockets":null,"options":{"path":null},"protocol":"http:","requests":{},"scheduling":"lifo","sockets":{"localhost:10002:":[{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null}]},"totalSocketCount":1},"chunkedEncoding":false,"destroyed":false,"finished":true,"host":"localhost","maxHeadersCount":null,"maxRequestsOnConnectionReached":false,"method":"GET","outputData":[],"outputSize":0,"parser":null,"path":"/projectID/integration/name/qapla","protocol":"http:","res":{"_consuming":false,"_dumped":false,"_events":{"end":[null,null]},"_eventsCount":4,"_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":true,"closed":true,"constructed":true,"dataEmitted":false,"decoder":null,"defaultEncoding":"utf8","destroyed":true,"emitClose":true,"emittedReadable":false,"encoding":null,"endEmitted":true,"ended":true,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":false,"objectMode":false,"pipes":[],"readableListening":false,"reading":false,"readingMore":true,"resumeScheduled":false,"sync":true},"aborted":false,"client":{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null},"complete":true,"httpVersion":"1.1","httpVersionMajor":1,"httpVersionMinor":1,"method":null,"rawHeaders":["X-Powered-By","Express","Date","Tue, 08 Apr 2025 13:24:21 GMT","Connection","close","Content-Length","0"],"rawTrailers":[],"redirects":[],"req":"[Circular]","responseUrl":"http://localhost:10002/projectID/integration/name/qapla","socket":{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null},"statusCode":404,"statusMessage":"Not Found","upgrade":false,"url":""},"reusedSocket":false,"sendDate":false,"shouldKeepAlive":false,"socket":{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null},"strictContentLength":false,"timeoutCb":null,"upgradeOrConnect":false,"useChunkedEncodingByDefault":false,"writable":true},"status":404,"statusText":"Not Found"}
13940
+ info: (Tilebot) Starting Tilebot..
13941
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13942
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13943
+ info: (Tilebot) Log: false
13944
+ info: (Tilebot) MAX_STEPS: 1000
13945
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13946
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13947
+ info: (Tilebot) Using static bots
13948
+ info: (Tilebot) Connecting Redis...
13949
+ info: (Tilebot) Redis connected
13950
+ info: (Tilebot) Tilebot started
13951
+ info: Starting tilebot server...
13952
+ info: (Tilebot) Starting Tilebot..
13953
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13954
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13955
+ info: (Tilebot) Log: false
13956
+ info: (Tilebot) MAX_STEPS: 1000
13957
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13958
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13959
+ info: (Tilebot) Using static bots
13960
+ info: (Tilebot) Connecting Redis...
13961
+ info: (Tilebot) Redis connected
13962
+ info: (Tilebot) Tilebot started
13963
+ info: Tilebot route successfully started.
13964
+ info: Tilebot connector listening on port 10001
13965
+ info: Starting tilebot server...
13966
+ info: (Tilebot) Starting Tilebot..
13967
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13968
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13969
+ info: (Tilebot) Log: false
13970
+ info: (Tilebot) MAX_STEPS: 1000
13971
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13972
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13973
+ info: (Tilebot) Using static bots
13974
+ info: (Tilebot) Connecting Redis...
13975
+ info: (Tilebot) Redis connected
13976
+ info: (Tilebot) Tilebot started
13977
+ info: Tilebot route successfully started.
13978
+ info: Tilebot connector listening on port 10001
13979
+ info: Starting tilebot server...
13980
+ info: (Tilebot) Starting Tilebot..
13981
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13982
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13983
+ info: (Tilebot) Log: false
13984
+ info: (Tilebot) MAX_STEPS: 1000
13985
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
13986
+ info: (Tilebot) Starting Tilebot connector v2.0.7
13987
+ info: (Tilebot) Using static bots
13988
+ info: (Tilebot) Connecting Redis...
13989
+ info: (Tilebot) Redis connected
13990
+ info: (Tilebot) Tilebot started
13991
+ info: Tilebot route successfully started.
13992
+ info: Tilebot connector listening on port 10001
13993
+ info: Wait a little (~2s)...
13994
+ info: Wait a little (~3s)...
13995
+ info: Starting tilebot server...
13996
+ info: (Tilebot) Starting Tilebot..
13997
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
13998
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
13999
+ info: (Tilebot) Log: false
14000
+ info: (Tilebot) MAX_STEPS: 1000
14001
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
14002
+ info: (Tilebot) Starting Tilebot connector v2.0.7
14003
+ info: (Tilebot) Using static bots
14004
+ info: (Tilebot) Connecting Redis...
14005
+ info: (Tilebot) Redis connected
14006
+ info: (Tilebot) Tilebot started
14007
+ info: Tilebot route successfully started.
14008
+ info: Tilebot connector listening on port 10001
14009
+ info: Starting tilebot server...
14010
+ info: (Tilebot) Starting Tilebot..
14011
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
14012
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10002/modules/tilebot
14013
+ info: (Tilebot) Log: false
14014
+ info: (Tilebot) MAX_STEPS: 1000
14015
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
14016
+ info: (Tilebot) Starting Tilebot connector v2.0.7
14017
+ info: (Tilebot) Using static bots
14018
+ info: (Tilebot) Connecting Redis...
14019
+ info: (Tilebot) Redis connected
14020
+ info: (Tilebot) Tilebot started
14021
+ info: Tilebot route successfully started.
14022
+ info: Tilebot connector listening on port 10001
14023
+ info: Starting tilebot server...
14024
+ info: (Tilebot) Starting Tilebot..
14025
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
14026
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
14027
+ info: (Tilebot) Log: false
14028
+ info: (Tilebot) MAX_STEPS: 1000
14029
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
14030
+ info: (Tilebot) Starting Tilebot connector v2.0.7
14031
+ info: (Tilebot) Using static bots
14032
+ info: (Tilebot) Connecting Redis...
14033
+ info: (Tilebot) Redis connected
14034
+ info: (Tilebot) Tilebot started
14035
+ info: Tilebot route successfully started.
14036
+ info: Tilebot connector listening on port 10001
14037
+ info: Starting tilebot server...
14038
+ info: (Tilebot) Starting Tilebot..
14039
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
14040
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
14041
+ info: (Tilebot) Log: false
14042
+ info: (Tilebot) MAX_STEPS: 1000
14043
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
14044
+ info: (Tilebot) Starting Tilebot connector v2.0.7
14045
+ info: (Tilebot) Using static bots
14046
+ info: (Tilebot) Connecting Redis...
14047
+ info: (Tilebot) Redis connected
14048
+ info: (Tilebot) Tilebot started
14049
+ info: Tilebot route successfully started.
14050
+ info: Tilebot connector listening on port 10001
14051
+ error: DirWebRequestV2 Error parsing webRequest jsonBody: "{\"name\":myname,\"email\":\"myemail\"}"
14052
+ Error: {}
14053
+ info: Starting tilebot server...
14054
+ info: (Tilebot) Starting Tilebot..
14055
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
14056
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
14057
+ info: (Tilebot) Log: false
14058
+ info: (Tilebot) MAX_STEPS: 1000
14059
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
14060
+ info: (Tilebot) Starting Tilebot connector v2.0.7
14061
+ info: (Tilebot) Using static bots
14062
+ info: (Tilebot) Connecting Redis...
14063
+ info: (Tilebot) Redis connected
14064
+ info: (Tilebot) Tilebot started
14065
+ info: Tilebot route successfully started.
14066
+ info: Tilebot connector listening on port 10001
14067
+ info: Redis: value; value: 1
14068
+ info: Redis: value; value: Andrea
14069
+ info: Redis: value; value: Luis
14070
+ info: Redis: value; value: [object Object]
14071
+ info: Redis: value; value: [object Object]
14072
+ info: Redis: total; value: 4
14073
+ info: Redis: total; value: 4
14074
+ info: Redis: total; value: Francesco Latino Tiledesk
14075
+ info: Redis: summary; value: andrea sponziello tiledesk
14076
+ error: (DirSetAttribute) Invalid action: {"0":{"argument":"operands","instance":{"operators":["addAsNumber","subtractAsNumber","divideAsNumber","multiplyAsNumber"]},"message":"requires property \"operands\"","name":"required","path":["operation"],"property":"instance.operation","schema":{"additionalProperties":false,"properties":{"operands":{"items":{"additionalProperties":false,"if":{"properties":{"isVariable":{"const":true}}},"properties":{"function":{"enum":["capitalizeAsString","upperCaseAsString","lowerCaseAsString","absAsNumber","ceilAsNumber","floorAsNumber","roundAsNumber"],"type":"string"},"isVariable":{"type":"boolean"},"value":{"type":"string"}},"required":["value","isVariable"],"then":{"properties":{"value":{"pattern":"^[a-zA-Z_]*[a-zA-Z_]+[a-zA-Z0-9_]*$"}}},"type":"object"},"minItems":1,"type":"array"},"operators":{"items":{"enum":["addAsNumber","addAsString","subtractAsNumber","multiplyAsNumber","divideAsNumber"],"type":"string"},"type":"array"}},"required":["operands"],"type":"object"},"stack":"instance.operation requires property \"operands\""}}
14077
+ error: (DirSetAttribute) Invalid action: {"0":{"argument":"_tdActionType","instance":{},"message":"requires property \"_tdActionType\"","name":"required","path":[],"property":"instance","schema":{"additionalProperties":false,"properties":{"_tdActionId":{"type":["string","null"]},"_tdActionTitle":{"type":["string","null"]},"_tdActionType":{"enum":["setattribute"],"type":"string"},"destination":{"type":"string"},"operation":{"additionalProperties":false,"properties":{"operands":{"items":{"additionalProperties":false,"if":{"properties":{"isVariable":{"const":true}}},"properties":{"function":{"enum":["capitalizeAsString","upperCaseAsString","lowerCaseAsString","absAsNumber","ceilAsNumber","floorAsNumber","roundAsNumber"],"type":"string"},"isVariable":{"type":"boolean"},"value":{"type":"string"}},"required":["value","isVariable"],"then":{"properties":{"value":{"pattern":"^[a-zA-Z_]*[a-zA-Z_]+[a-zA-Z0-9_]*$"}}},"type":"object"},"minItems":1,"type":"array"},"operators":{"items":{"enum":["addAsNumber","addAsString","subtractAsNumber","multiplyAsNumber","divideAsNumber"],"type":"string"},"type":"array"}},"required":["operands"],"type":"object"}},"required":["_tdActionType","destination","operation"],"type":"object"},"stack":"instance requires property \"_tdActionType\""},"1":{"argument":"destination","instance":{},"message":"requires property \"destination\"","name":"required","path":[],"property":"instance","schema":{"additionalProperties":false,"properties":{"_tdActionId":{"type":["string","null"]},"_tdActionTitle":{"type":["string","null"]},"_tdActionType":{"enum":["setattribute"],"type":"string"},"destination":{"type":"string"},"operation":{"additionalProperties":false,"properties":{"operands":{"items":{"additionalProperties":false,"if":{"properties":{"isVariable":{"const":true}}},"properties":{"function":{"enum":["capitalizeAsString","upperCaseAsString","lowerCaseAsString","absAsNumber","ceilAsNumber","floorAsNumber","roundAsNumber"],"type":"string"},"isVariable":{"type":"boolean"},"value":{"type":"string"}},"required":["value","isVariable"],"then":{"properties":{"value":{"pattern":"^[a-zA-Z_]*[a-zA-Z_]+[a-zA-Z0-9_]*$"}}},"type":"object"},"minItems":1,"type":"array"},"operators":{"items":{"enum":["addAsNumber","addAsString","subtractAsNumber","multiplyAsNumber","divideAsNumber"],"type":"string"},"type":"array"}},"required":["operands"],"type":"object"}},"required":["_tdActionType","destination","operation"],"type":"object"},"stack":"instance requires property \"destination\""},"2":{"argument":"operation","instance":{},"message":"requires property \"operation\"","name":"required","path":[],"property":"instance","schema":{"additionalProperties":false,"properties":{"_tdActionId":{"type":["string","null"]},"_tdActionTitle":{"type":["string","null"]},"_tdActionType":{"enum":["setattribute"],"type":"string"},"destination":{"type":"string"},"operation":{"additionalProperties":false,"properties":{"operands":{"items":{"additionalProperties":false,"if":{"properties":{"isVariable":{"const":true}}},"properties":{"function":{"enum":["capitalizeAsString","upperCaseAsString","lowerCaseAsString","absAsNumber","ceilAsNumber","floorAsNumber","roundAsNumber"],"type":"string"},"isVariable":{"type":"boolean"},"value":{"type":"string"}},"required":["value","isVariable"],"then":{"properties":{"value":{"pattern":"^[a-zA-Z_]*[a-zA-Z_]+[a-zA-Z0-9_]*$"}}},"type":"object"},"minItems":1,"type":"array"},"operators":{"items":{"enum":["addAsNumber","addAsString","subtractAsNumber","multiplyAsNumber","divideAsNumber"],"type":"string"},"type":"array"}},"required":["operands"],"type":"object"}},"required":["_tdActionType","destination","operation"],"type":"object"},"stack":"instance requires property \"operation\""}}
14078
+ error: (DirSetAttribute) Invalid action: operators === undefined && operands.length !== 1
14079
+ error: (DirSetAttribute) Invalid action: operators.length !== operands.length - 1
14080
+ error: (DirSetAttribute) Invalid action: {"0":{"argument":"^[a-zA-Z_]*[a-zA-Z_]+[a-zA-Z0-9_]*$","instance":"inject(here);","message":"does not match pattern \"^[a-zA-Z_]*[a-zA-Z_]+[a-zA-Z0-9_]*$\"","name":"pattern","path":["operation","operands",0,"value"],"property":"instance.operation.operands[0].value","schema":{"pattern":"^[a-zA-Z_]*[a-zA-Z_]+[a-zA-Z0-9_]*$"},"stack":"instance.operation.operands[0].value does not match pattern \"^[a-zA-Z_]*[a-zA-Z_]+[a-zA-Z0-9_]*$\""}}
14081
+ error: (DirSetAttribute) Invalid action: {"0":{"argument":"^[a-zA-Z_]*[a-zA-Z_]+[a-zA-Z0-9_]*$","instance":"inject(here);","message":"does not match pattern \"^[a-zA-Z_]*[a-zA-Z_]+[a-zA-Z0-9_]*$\"","name":"pattern","path":["operation","operands",1,"value"],"property":"instance.operation.operands[1].value","schema":{"pattern":"^[a-zA-Z_]*[a-zA-Z_]+[a-zA-Z0-9_]*$"},"stack":"instance.operation.operands[1].value does not match pattern \"^[a-zA-Z_]*[a-zA-Z_]+[a-zA-Z0-9_]*$\""}}
14082
+ warn: DirIfOnlineAgents Incorrect directive:
14083
+ warn: DirIfOnlineAgents Incorrect directive:
14084
+ info: Starting tilebot server...
14085
+ info: (Tilebot) Starting Tilebot..
14086
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
14087
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
14088
+ info: (Tilebot) Log: false
14089
+ info: (Tilebot) MAX_STEPS: 1000
14090
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
14091
+ info: (Tilebot) Starting Tilebot connector v2.0.7
14092
+ info: (Tilebot) Using static bots
14093
+ info: (Tilebot) Connecting Redis...
14094
+ info: (Tilebot) Redis connected
14095
+ info: (Tilebot) Tilebot started
14096
+ info: Tilebot route successfully started.
14097
+ info: Tilebot connector listening on port 10001
14098
+ info: Starting tilebot server...
14099
+ info: (Tilebot) Starting Tilebot..
14100
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
14101
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
14102
+ info: (Tilebot) Log: false
14103
+ info: (Tilebot) MAX_STEPS: 1000
14104
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
14105
+ info: (Tilebot) Starting Tilebot connector v2.0.7
14106
+ info: (Tilebot) Using static bots
14107
+ info: (Tilebot) Connecting Redis...
14108
+ info: (Tilebot) Redis connected
14109
+ info: (Tilebot) Tilebot started
14110
+ info: Tilebot route successfully started.
14111
+ info: Tilebot connector listening on port 10001
14112
+ error: (TiledeskExpression) evaluateJavascriptExpression error: Unexpected token ']' - while evaluating the following expression: '$data.andrea[].{ === undefined'
14113
+ error: (TiledeskExpression) evaluateJavascriptExpression error: Unexpected token ']' - while evaluating the following expression: 'Number($data.varName) === Number($data.var[].{)'
14114
+ error: (TiledeskExpression) evaluateJavascriptExpression error: missing ) after argument list - while evaluating the following expression: 'Number($data.age()...[) < Number("10")'
14115
+ error: (TiledeskExpression)Condition evaluation stopped because of invalid operand2 [object Object]
14116
+ error: (TiledeskExpression) Condition evaluation stopped because of invalid operand1 11height
14117
+ error: (TiledeskExpression) Invalid JSON Group expression {"conditions":[{"operand1":"11height","operand2":{"type":"const","value":"1"},"operator":"greaterThan","type":"condition"},{"operator":"AND","type":"operator"},{"operand1":"name","operand2":{"type":"const","value":"And"},"operator":"startsWith","type":"condition"}],"type":"expression"}