Thank you. So I just run a second docker container with some tweaks, like so:
mkdir -p /opt/tei-cache2
docker run --detach --rm --gpus all --shm-size 1g -p 8082:80 \
-v /opt/tei-cache2:/data \
ghcr.io/huggingface/text-embeddings-inference:latest \
--model-id SamLowe/roberta-base-go_emotions
and add a new entry in ai_sentiment_model_configs
and it’s all working now. Thank you.