Testing out the Hailo-10 on the RPI5.
The “hailo-ollama” API is working.
My RPI5+Hailo-10 is at IP address 10.0.0.108, so the following is working from a separate computer:
curl --silent ``http://10.0.0.108:8000/api/chat`` -H ‘Content-Type: application/json’ -d ‘{“model”: “qwen2:1.5b”, “messages”: [{“role”: “user”, “content”: “Who are you?”}]}’
Is this API compatible with the OLLAMA API ?
I tried the following, which is not working:
export OLLAMA_HOST=10.0.0.108:8000
ollama run qwen2:1.5b “Who are you?”
I get the following error from ollama:
Error: something went wrong, please see the ollama server logs for details
Before I debug, I wanted to check if this can be expected to work.
Thank you in advance for any feedback or guidance,
Mario.
