Posts

Showing posts with the label llm

Build Your Own Agentic AI Platform

Image
  Build Your Own Agentic AI Platform at Home with Containers, Ollama, n8n, and Vector Databases YouTube on Pi:      https://youtu.be/__Led8X0bOk                                    https://youtu.be/huaCfx1My6M                                    https://youtu.be/JrhRwU2TkEA                                    https://youtu.be/NCXgHdqjxI0 YouTube on VM:  https://youtu.be/qar4KA47HIM Artificial Intelligence is changing rapidly. We are moving beyond simple chatbots into systems that can: Search documents Remember context Use tools Trigger workflows Query databases Make decisions Automate tasks These are often called  agentic AI systems . And the exciting...

Self hosting Deekseek

Image
  Hosting Deepseek R1 Vagrant.configure("2") do |config|  config.vm.box = "bento/ubuntu-24.04"  config.vm.provider "vmware_fusion" do |v|    v.memory = 4096    v.cpus = 2  end  config.vm.synced_folder ".", "/vagrant", disabled: true  config.vm.network "public_network", ip: "192.168.1.253", use_dhcp_assigned_default_route: true  config.vm.provision "shell", inline: <<-SHELL       sudo apt update -y       # apt upgrade -y       sudo ufw disable       sudo systemctl stop apparmor       sudo systemctl disable apparmor       sudo sed -i '/swap/d' /etc/fstab       sudo swapoff -a       echo "192.168.1.253 aionpi" >> /etc/hosts       curl -fsSL https://ollama.com/install.sh | sh    cat <<-'EOF' > /etc/systemd/system/ollama.service [Unit] Description=Ollama Service After=networ...