Posts

Setting Up MiniMax-M3 in Prime Agent

If you're trying to use the MiniMax M3 model with Prime Agent and getting cryptic errors like ` No API provider registered for api: anthropic ` or ` Model not found: minimax/MiniMax-M3 ` , this guide walks you through the fix. ## The Problem Prime Agent's ` models.json ` configuration file has a few gotchas that aren't obvious from the documentation. After a few rounds of debugging, here are the three things that need to be correct: 1. The ** ` api ` field ** must be one of the values Prime Agent actually recognizes ( ` anthropic-messages ` , ` openai-completions ` , ` openai-responses ` ). 2. The ** ` baseUrl` ** must match the API protocol you're using. 3. The ** provider name ** in ` models.json ` must match the one referenced in ` settings.json ` . Get any of these wrong and you get a frustrating error that doesn't immediately point to the cause. ## Understanding MiniMax's API [ MiniMax ]( https://platform.minimax.io ) exposes two API...

Add ceph to proxmox

 Make sure you empty the data (remove all vm's that uses this storage lvm) Then when done, run in shell: lvs lvremove pve/data Recreate some of the space lvcreate -L 500G --thinpool data pve then do the ceph for remaining space lvcreate -l100%FREE -n cephosd pve ceph auth get client.bootstrap-osd > /var/lib/ceph/bootstrap-osd/ceph.keyring ceph-volume lvm prepare --data pve/cephosd ceph-volume lvm activate --all pveceph pool create ceph-vm --pg_num 128 --size 3 --min_size 2

Switching from Docker Desktop to Rancher Desktop on WSL2: Solving the Missing docker-credential-desktop.exe Error

Switching from Docker Desktop to Rancher Desktop on WSL2: Solving the Missing docker-credential-desktop.exe Error I’ve been happily running Kamal inside WSL2 on my home Windows desktop for a while. My original setup included an older Docker Desktop installation. Recently, I wanted to replicate this environment on a different machine, but I discovered that Docker Desktop had changed their licensing terms. Technically, I’m still covered by the new licensing terms, but I decided to try Rancher Desktop instead. Installing Rancher Desktop on WSL2 Installation was straightforward. I installed Rancher Desktop, configured it to integrate with WSL2, and disabled Kubernetes (since I don’t currently need it). My plan was to continue using the Docker CLI inside WSL2 alongside Rancher Desktop for container management. The Authentication Error However, when I was in WSL and tried to authenticate (for example, with Docker Hub via docker login), I ran into this error: ``` failed to store...

How to Disable Bing Search in Windows

Image
 Many Windows users prefer to limit their searches to local files and programs without including internet results. Here's a simple guide to disable Bing search in Windows: ## Step-by-Step Guide 1. Open the Registry Editor    - Press `Win + R` to open the Run dialog    - Type `regedit` and press Enter 2. Navigate to the following path:    `HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Search` 3. Create a new DWORD value:    - Right-click in the right panel    - Select New > DWORD Value (32-bit)    - Name the new value "BingSearchEnabled" 4. Configure the new value:    - Double-click on "BingSearchEnabled"    - Set the value to 0 5. Restart your computer ## What does this do? By setting "BingSearchEnabled" to 0, you're telling Windows that you don't want to use Bing search in the Windows search function. This limits the search to only include local files and programs.

Fixing pi-hole for Safari / Macbook

 Go into the network settings for each wifi or ethernet connection and disable Limit IP Adress Tracking

Setting up a zero tier bridge on a raspberry pi

Image
    1  sudo apt-get update     2  sudo apt-get update && sudo apt-get upgrade     3  sudo apt-get update && sudo apt-get -y upgrade     4  sudo apt-get update     5  sudo apt-get update && sudo apt-get upgrade     6  sudo apt-get -f upgrade     7  sudo apt update && sudo apt -y full-upgrade     8  sudo reboot     9  sudo apt-get update    10  sudo apt-get upgrade    11  curl -s https://install.zerotier.com | sudo bash    12  sudo zerotier-cli join abc4567890123456    13  sudo apt update && sudo apt -y full-upgrade    14  ifconfig    15  ifconfig    16  sudo zerotier-cli show    17  sudo zerotier-cli info    18  sudo zerotier-cli listnetworkw    19  sudo zerotier-cli l...

Allow WSL to talk with Hyper-V VMs

 Enter this command in powershell to enable forwarding: Get-NetIPInterface | where {$_.InterfaceAlias -eq 'vEthernet (WSL)' -or $_.InterfaceAlias -eq 'vEthernet (Default Switch)'} | Set-NetIPInterface -Forwarding Enabled -Verbose Credits goes to this link (thanks!)  https://automatingops.com/allowing-windows-subsystem-for-linux-to-communicate-with-hyper-v-vms