Installing Qwen3.6-35B-A3B-APEX-I-Compact on Ollama

Installing Qwen3.6-35B-A3B-APEX-I-Compact on Ollama

Tiempo de lectura: 2 minutosOllama does not support native tags from some Hugging Face repositories (such as I-Compact, Balanced, etc.) when they do not conform to their standard quantization schema (Q4_K_M, Q5_K_S…). The solution is to manually download the .gguf and register it with a Modelfile. Repo: https://huggingface.co/mudler/Qwen3.6-35B-A3B-APEX-GGUF For a 16GB RTX 5060 Ti, the suitable variant is I-Compact … Read more

Comparison of Local LLM Models on NVIDIA GeForce RTX 5060 Ti 16GB with Ollama

Comparison of Local LLM Models on NVIDIA GeForce RTX 5060 Ti 16GB with Ollama

Tiempo de lectura: 2 minutosI’ll show you a comparison of the best local LLM models for programming. The entire benchmark was performed on a server with the following features: OLLAMA_KEEP_ALIVE=-1 OLLAMA_KV_CACHE_TYPE=q4_0 OLLAMA_FLASH_ATTENTION=true OLLAMA_NEW_ENGINE=true Methodology To compare models uniformly, the same prompt was used in all cases: “Write a Python class called GestorTareas with methods: add task, delete task, mark … Read more

Using Ollama with GitHub Copilot in VS Code

Using Ollama with GitHub Copilot in VS Code

Tiempo de lectura: 2 minutosToday we will explain how to use Ollama from a custom provider for GitHub Copilot. The first thing we need to have is GitHub Copilot installed in our VS Code And also Ollama installed (recommended in a remote environment). Once all the necessary services are ready, we proceed with action. We open VS Code and … Read more

Installing OpenClaw using Docker Compose

Installing OpenClaw using Docker Compose

Tiempo de lectura: < 1 minutoHoy vamos a aprender a instalar OpenClaw en un sistema Docker mediante Docker Compose y dejarlo de forma aislada. Primero instalamos Docker. Once installed, we need to update Docker Compose: # Add official Docker repository curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg –dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg echo “deb [arch=$(dpkg –print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable” | sudo … Read more

Using local Ollama with Opencode

Using local Ollama with Opencode

Tiempo de lectura: < 1 minutoWe will learn today how we can use opencode with our Ollama directly on local. The API is exposed by default in: http://localhost:11434 Check it out: curl http://localhost:11434/api/tags You don’t have it? You need to install Ollama For Windows: irm https://ollama.com/install.ps1 | iex For Windows: curl -fsSL https://ollama.com/install.ps1 | iex We download a model, in … Read more

Motivational Sentence Agent with Claude Code and Chron

Motivational Sentence Agent with Claude Code and Chron

Tiempo de lectura: 2 minutosVamos a generate a first agent with Claude Code and it will run automatically every hour with a cron and upload the generated content to GitHub. Crea the folder of your agent: mkdir -p ~/motivational-agent/md mkdir -p ~/motivational-agent/data cd ~/motivational-agent The final structure will be: motivational-agent/ │ ├─ md/ │ └─ claude.md # context and … Read more

Installing Claude Code on Windows

Tiempo de lectura: < 1 minutoWe will learn today how to install Claude Code on Windows. Claude Code is a tool developed by Anthropic that acts as an intelligent agent for programmers. It’s not an AI model itself, but rather a CLI/Interface that communicates with advanced language models, such as those from the Claude family, to help you generate, review … Read more

Building an Agent with LangGraph without LLM Connection Tutorial

Building an Agent with LangGraph without LLM Connection Tutorial

Tiempo de lectura: 3 minutosWe will build a LangGraph agent with Python and no LLM as an example for a basic tutorial. Our agent will do the following: You receive a user’s question Determine if you need to search for information (simulated) Respond with or without searching Save state between nodes First, we will install the library: pip install … Read more

Language Models: General or Instructional – A Key Comparison

Language Models: General or Instructional – A Key Comparison

Tiempo de lectura: < 1 minutoWe need to understand that not all models are created equal. The main difference between general models and instructional models. General models Ejemplo:Pregunta: “Explain how a neural network works”Response from a general model: can give an extensive explanation, include unnecessary concepts or jump topics. Instruct Models Ejemplo:Pregunta: “Explain how a neural network works step by … Read more