03 Editorial

Blog

We only write about what we've verified ourselves: independent model runs, case breakdowns, technology history. Every article has an author, a date and sources.

Editor's pick · AI History

Why 2022 Was the Turning Point: ChatGPT and the Birth of the Generative Era

On November 30, 2022, OpenAI released a "research preview" of a chatbot. Five days later it had a million users; two months later, a hundred million — the fastest product growth in history. We unpack what happened technologically and culturally: why GPT-3.5 in a chat wrapper worked where more powerful systems hadn't, and how that moment rebooted the entire industry.

02
Models

Claude Fable 5 vs GPT-5.6 Sol: 12 Task Types Head-to-Head

Code, long docs, math, data analysis — an independent run with no vendor marketing.

M. Sokolova · 9 min
03
Practice

Deploy an AI Support Agent in 2 Weeks: A Step-by-Step Guide

Tools, prompts, metrics. Tested on teams of 3–50: up to 80% of tickets resolved without a human.

D. Belov · 7 min
04
Open Source

Llama 4 Scout: What You Need to Know About 10M Token Context

Capabilities, limits and hardware requirements of the most powerful open model.

K. Ivanov · 8 min
05
Security

What Never to Send to ChatGPT or Claude: Data Policies in Plain Language

How vendors use your data, what zero-retention means and when you need self-hosted.

D. Belov · 6 min
How this blog works: long-form pieces ship two or three times a month, the digests below refresh with every release, and the glossary and starter guide are living pages we extend as new terms and tools appear. This is the right place to start reading the site: the digests give you the picture in five minutes, the guide turns it into practice within a week.
3.7 —

Digests: The Essentials from Recent Articles

For readers without a spare twenty minutes: condensed takeaways from the three latest pieces. Full versions are linked in the list above.

Claude vs GPT-5

Who wins across 12 task types

Maria Sokolova ran both models through an identical set: code, long documents, math, spreadsheets, texts in three languages. The verdict holds few surprises but plenty of nuance: Claude Fable 5 takes seven of twelve categories — above all long contracts, where GPT-5.6 starts dropping cross-references around page three hundred, and multi-step code refactoring. GPT-5.6 Sol wins four: agentic tool chains, image generation alongside text, latency on short requests, and its plugin ecosystem. One category — creative writing — ends in a draw; the difference is taste. The practical takeaway: holding both subscriptions costs more than it seems, and the choice should follow the two or three tasks that consume most of your time.

Agent in 2 weeks

Support without a human: Dmitry Belov's playbook

The most-quoted part is the timeline. Days 1–3: export the last thousand tickets and label them by topic — it turns out 60–70% of requests fit twenty scenarios. Days 4–7: a knowledge base for those scenarios, written in plain language with no internal jargon. Days 8–10: a Claude Sonnet agent with RAG running internally only — operators see draft replies and edit them. Days 11–14: accuracy measurement; the agent reaches customers only above 90% on the internal check. The key post-launch metric is not the automation share but the fraction of escalations the agent hands to a human correctly instead of inventing an answer.

Llama 4 Scout

10 million tokens: what actually changes

Kirill Ivanov cools the excitement: the record context is an engineering trade-off, not magic. At full length the model runs slowly and expensively, and fact retrieval from the middle drops 8–12% versus the first and last pages. Still, three scenarios where 10M genuinely rewrites the rules: analyzing a company's entire year of correspondence, auditing a large code repository without chunking, and working through a corpus of case law. Hardware requirements are honest: from 40 GB VRAM for the quantized build, comfortable from 80. The article's conclusion: 200K commercial contexts cover 95% of tasks — but the remaining 5% used to be impossible outright.

3.8 —

Guide: Your First Week with AI

We revise this guide quarterly based on reader mail: if a step raises questions or goes stale, write in and we fix it. The version below is dated August 2026 and has been tested on three dozen people with no technical background.

Seven days, twenty minutes each, no programming and no subscriptions. The goal is not to "learn neural networks" but to wire one or two into your actual work.

Day 1–2

A real task, not a demo

Sign up for Claude, ChatGPT or Gemini — any of them. Do not ask "what can you do"; hand over a genuine task from today: "rewrite this email shorter and firmer", "draft a moving plan for a 20-person office". The difference from search becomes obvious by the second task.

Day 3

Context is the lever

The working prompt formula: role + task + format + example. Compare "write a post" with "you are a B2B blog editor; write a 150-word post about a release delay, calm tone, no apologies, end with one question to the reader". The second version needs almost no editing.

Day 4

Long documents

Upload a thirty-page contract, report or manual. Ask for: a summary, five risks, every date and amount as a list. Then interrogate the text — it replaces an hour of diagonal reading.

Day 5

Tables and data

Paste a table straight into the chat: "find anomalies", "group by region", "which three rows break the total". Models read CSV better than commonly assumed; the key is asking them to show the calculation logic.

Day 6

A personal prompt library

Start a note and collect the phrasings that worked. In a month it becomes your main tool: a good prompt outlives any model switch.

Day 7

Boundaries

Two prohibitions: never paste customers' personal data or trade secrets into public chatbots; never publish facts or figures from an answer without checking the primary source. These two rules cover 90% of a beginner's real risk.

3.9b —

How We Pick Topics

The filter is simple and strict. First: a topic must pass the test "what will the reader do differently after this text?" — traffic-bait never enters the backlog. Second: the newsroom must reach a primary source — a technical report, a dataset, a participant; retellings of other people's retellings do not get published. Third: if the piece covers a tool, one of the four of us must run it on real tasks for at least a week — which is why reviews come out later than competitors' and disappoint less often.

Reader requests are the second-largest topic source after our own backlog: roughly every fourth article grew from an email to [email protected]. The most useful requests look like this: "we tried X for task Y, got Z, and cannot explain why." That kind of letter almost always becomes the article a hundred other teams need.

Do you publish guest articles?
Yes, on two conditions: the author has verifiable experience in the topic, and the text carries something absent from open sources — original numbers, mistakes made, datasets. Promotional texts disguised as guest posts fail fact-check by design: we verify both the claims and the author's affiliations.
Why do articles come out less often than at large outlets?
Four people plus a mandatory control run of every tool set a physical ceiling — two or three long pieces a month plus the weekly digest. We chose depth over frequency and have no regrets so far: the average article gets read six times longer than a news item.
3.9 —

Glossary

LLM
Large Language Model — a neural network trained on massive text corpora to understand and generate language.
Prompt Engineering
The craft of writing AI requests. A well-built prompt improves output quality several-fold without changing the model.
RAG
Retrieval-Augmented Generation — the model augments answers with external database content in real time. The backbone of AI search.
AI Agent
A system that completes multi-step tasks autonomously: code, browser, APIs — without a human at every step.
Context Window
How much text a model "sees" per request, measured in tokens (~0.75 words each). The 2026 record: 10M in Llama 4.
Fine-tuning
Training a model further on company data for accuracy in a narrow domain. The alternative is RAG — cheaper and more flexible.
Token
The model's unit of text, roughly 0.75 of a word. API prices and context sizes are measured in tokens: a page of text is about 500 tokens.
Hallucination
A confident but invented answer: non-existent links, figures, quotes. Below 2% on factual tests for 2026 flagships — but not zero. The cure is checking primary sources.
Multimodality
Working beyond text: images, audio, video as input and output. Gemini 3.1 Pro is the reference example of native multimodality.
Reasoning model
A mode where the model builds a chain of thought before answering. More accurate on hard problems; 3–10× slower and pricier than a regular request.
Benchmark
A standardized test for comparing models: MMLU, GPQA, HumanEval. Useful as a compass, never a substitute for testing on your own tasks.
Zero-retention
An API mode where the vendor stores none of your requests and trains on none of them. A hard requirement for sensitive data in the cloud.