Wednesday, 26 August 2026 | التحديث اليومي نظرة ثاقبة للذكاء الاصطناعي، مكتوبة للبناة

اسم المؤلف Mustafa Ihsan

Mustafa Ihsan is the founder and editor of Convly.ai. He built and maintains the site's live AI models database, its price-performance index, and its free calculators for VRAM requirements, API costs and self-hosting economics. He writes about model pricing, benchmark results and the hardware needed to run AI models locally, and consistently prefers measured numbers to vendor claims.

4 GB — what it actually needs. llamafile.
أخبار الذكاء الاصطناعي

llamafile: تشغيل أي نموذج لغوي كبير (LLM) كملف تنفيذي محمول واحد

llamafile packages a GGUF model and the llama.cpp inference engine into one executable file that runs on Linux, macOS, Windows, FreeBSD, and more — no installation needed. Run ./model.llamafile and a browser chat UI opens automatically; an OpenAI-compatible API is served at http://localhost:8080/v1.Files over 4 GB cannot run directly on Windows — use a smaller quantization or run the runtime and GGUF separately. Best for air-gapped machines, USB deployment, and one-file sharing.

$0.10 — the number that matters. Hugging Face Inference API.
أخبار الذكاء الاصطناعي

واجهة برمجة تطبيقات الاستدلال في Hugging Face: كيفية عملها، وتكاليفها، ومتى يجب استخدامها

The Hugging Face Inference API — now officially called Inference Providers — routes requests to Groq, Together AI, Fireworks, Cerebras, and others through a single HF token at https://router.huggingface.co/v1.Free tier: $0.10/month in credits for free accounts,$2.00/month for PRO users.

Text Generatio — explained. Text Generation WebUI (Oobabooga).
أخبار الذكاء الاصطناعي

واجهة ويب لتوليد النصوص (Oobabooga): دليل التثبيت، ووحدات التحميل، والاستخدام

text-generation-webui (widely called oobabooga after its GitHub author) is a free, open-source, browser-based interface for running LLMs locally on your own hardware. Install via one-click scripts — start_windows.bat, start_linux.sh, or start_macos.sh — no manual Python environment setup required. Supports multiple backends: llama.cpp for GGUF files, ExLlamaV2 for EXL2/GPTQ on NVIDIA, and Transformers for HuggingFace models. Includes an OpenAI-compatible API extension (–extensions openai) so other apps can connect to your local model without code changes.

80 GB — what it actually needs. vLLM Docker.
أخبار الذكاء الاصطناعي

Docker الخاص بـ vLLM: تشغيل خادم استنتاج مدعوم ببطاقة رسوميات في دقائق معدودة

Pull vllm/vllm-openai:latest and run it with –runtime nvidia –gpus all –ipc=host to get a GPU-backed OpenAI-compatible server. Mount ~/.cache/huggingface into the container so model weights survive container restarts. The server exposes an OpenAI-compatible API on port 8000; test it with curl http://localhost:8000/v1/models.The three most important tuning flags are –tensor-parallel-size, –max-model-len, and –gpu-memory-utilization.

4096× — the spread we measured. LoRA Fine Tuning.
أخبار الذكاء الاصطناعي

ضبط النموذج باستخدام تقنية LoRA: دليل عملي

LoRA fine tuning trains a tiny set of adapter weights instead of the full model — typically 1–5% of total parameters — so you can fine-tune a 7B model on a single consumer GPU.QLoRA adds 4-bit quantisation to the frozen base model, cutting VRAM further: a 7B model fits in ~6 GB, a 13B in ~10 GB.Rank (r) and alpha are the two knobs that control how much the adapter can change the model’s behaviour.

$500 — the number that matters. Ollama Cloud.
أخبار الذكاء الاصطناعي

سحابة Ollama: تشغيل النماذج في السحابة مقابل التشغيل المحلي

TL;DROllama Cloud refers to running Ollama on cloud infrastructure (AWS, GCP, Azure) rather than local hardware—same CLI and API, remote execution. All models in the Ollama library work on cloud instances; you pay hourly for GPU compute instead of buying hardware. Break-even point varies by usage: the self-hosting vs API calculator shows when cloud GPUs beat local hardware purchases. Privacy trade-off: cloud hosting means your prompts and responses transit the network and touch provider infrastructure, unlike fully local inference. Ollama cloud deployments run the same Ollama server you’d install locally, but on rented GPU instances from AWS, Google Cloud, Azure, or other providers.

8 GB — what it actually needs. Jan AI.
أخبار الذكاء الاصطناعي

Jan AI: تطبيق سطح مكتب مفتوح المصدر لتشغيل نماذج اللغة الكبيرة محليًّا

Jan is a free, open-source desktop app (AGPL license) that runs LLMs entirely on your own hardware — no account, no cloud, no data leaving your machine. It ships a chat interface, a model hub for downloading GGUF models, and an OpenAI-compatible local API server (default port 1337).Download from jan.ai or the GitHub Releases page — builds for Windows, macOS (Apple Silicon and Intel), and Linux. Best for privacy-focused users who want a full GUI experience; developers wanting a headless API-first workflow may prefer Ollama instead.

25% — measured, not claimed. KoboldCpp.
أخبار الذكاء الاصطناعي

KoboldCpp: دليل شامل لبرنامج تشغيل النماذج اللغوية الكبيرة (LLM) المحلي القائم على ملف تنفيذي واحد

KoboldCpp is a single executable — download it, point it at a GGUF model file, and a browser UI plus OpenAI-compatible API start immediately on port 5001. GPU offload is controlled by –gpulayers N; start with 999 to try full offload and reduce if you hit out-of-memory errors. Use it when you want a built-in story/chat UI or need KoboldAI-compatible endpoints; use Ollama if you prefer a managed model library and CLI-first workflow. No install step, no package manager, no daemon — just a single binary and a GGUF file. KoboldCpp is a single-file local LLM runtime built on top of llama.cpp.

انتقل إلى الأعلى
Featured on There's An AI For That