User icon
is there a way to run an ai model on your phone locally?
Comments
  • User icon
    assuming you have termux app installed,,,,

    termux-setup-storage

    pkg update && pkg upgrade -y

    pkg install ollama


    start the ollama server with

    ollama serve &


    examples of ai you can run

    pull(download) and run deepseek-r1:1.5b

    ollama run deepseek-r1:1.5b


    to download deepseek-r1:1.5b

    ollama pull deepseek-r1:1.5b


    to liszt what models are available


    ollama list


    uhh i think thats all you have to do
  • User icon
    yes