Udit Pandey
Udit Pandey
Facing the same issue. Whenever following code is executed with incorrect smtp_url, port, my worker crashes: ``` def validate_smtp(smtp_url: str): try: smtp = SMTP() smtp.connect(smtp_url) smtp.quit() return True except: return...
i resolved this issue by adding worker timeout while initiating my gunicorn application. `gunicorn -k uvicorn.workers.UvicornWorker ${APP_MODULE} --bind 0.0.0.0:80 --timeout ${WORKER_TIMEOUT}`
did you try pulling this way? `docker pull digite/kairon-ui`
You can build docker images for backend services locally. For UI, pulling docker image is the only way you can use this service. Any specific reason why you want to...
GET http://kairon-chat:5000/api/bot/6526d1e07776256c76530d47/conversation net::ERR_NAME_NOT_RESOLVED
We can try this- In your docker-compose, go to kairon-api service and change the value of AGENT_URL env to http://localhost:5000
GET http://kairon-chat:5000/api/bot/6526d1e07776256c76530d47/conversation net::ERR_NAME_NOT_RESOLVED
hi @escit , did this work?
Hi, it looks like your bot is hallucinating while trying to predict action. Can you verify if you have any intents or actions that are not linked to any story....
Did you retrain the bot after removing the intents?
Thats strange because I trained a new bot based on the training data you shared and its working. Will it be possible to share this bot with me ([email protected])? If...