Download Agentic_AI_insurance_case_management.zip file
Ollama (as local AI/LLM provider) is installed in conjunction with Camunda 8 Run
macOS
curl 'http://localhost:11434/api/tags'
Windows
$result = (Invoke-WebRequest -Uri http://localhost:11434/api/tags -Method GET).Content; echo $result
$x = @{"model"="qwen3"; "prompt"="Coucou, ça va ?";}; echo $x
Invoke-WebRequest -Uri http://localhost:11434/api/generate -Method POST -Body ($x|ConvertTo-Json) -ContentType "application/json"
# OpenAI API compatible:
$y = (@{"model"="qwen3"; "messages"=@(@{"role"="user"; "content"="Coucou, ça va ?"});}|ConvertTo-Json); echo $y
Invoke-WebRequest -Uri http://localhost:11434/v1/chat/completions -Method POST -Body $y -ContentType "application/json" -ConnectionTimeoutSeconds 300
ollama run glm-ocr Text Recognition: ./CI_1_fake_recto.png
https://javascript.plainenglish.io/build-an-ocr-app-in-5-minutes-with-ai-yes-really-4e6a41d298b0