Spaces:
Running
Running
FROM ollama/ollama:latest | |
RUN ollama serve & sleep 5 && ollama run mistral:7b | |
RUN apt update && apt install -y python3 && apt install -y python3-pip | |
RUN pip3 install litellm | |
RUN pip3 install 'litellm[proxy]' | |
ENTRYPOINT ["litellm", "--model", "ollama/mistral:7b", "--test", "--health"] |