Introduction to AI

Updated 2026.05.27.a

1 Intro to AI

Hello! This is a new page so expect this page to grow in the future.

This is an introduction to AI for people who don't know much about it.

AI is a combination of computer program and data which can help a person find information or do tasks. An AI can do research very quickly for you. An AI can also be an agent, which does tasks for you, even on a specified schedule. AI can do different things so the names for these things are not yet standardized.

This HTML page created from Markdown using the wonderful and free Pandoc! Pandoc can read and convert to many types of documents.

Glossary

These are not in order because we have to explain some things before others.

  1. A "prompt" is a sentence of what you tell the AI to do, or what you want to ask it. It's a good idea to be specific.
  2. A "model" is the data the AI uses to answer your question or perform a task. An LLM is a type of model called a "Large language model".
  3. An "LLM" is a Large Language Model. When running a local AI, this is the file you download which the AI talks to to do your task or answer your question. These files can range from 2GB in size to 200GB or more. So they can take a while to download in some cases. An LLM size is also based "parameters", see below. LLMs have at least 1 billion parameters.
  4. "MoE" model is a "Mixture of Experts". It only loads part of the model in memory at a time so you can use larger models.
  5. "Parameters". These are pieces of data the LLM learns. The more paramters there are, the larger the LLM file is and the more VRAM you need to run it.
  6. "Agent" is a tool that uses AI to get things done, or execute tasks.
  7. "1 bit AI". This is a type of AI that uses ternary bits: each bit has 3 values instead of 2. So the AI file is smaller and needs less memory, but they are not as accurate. Microsoft's BitNet is one example of 1 bit AI.
  8. A "token" is a unit which can be a phrase, one word, or even partial words. Unfortunately each AI engine uses different types of tokens so they are not compariable directly as tokens. But you can compare the net cost for the exact same prompts over different AI services. Here's a good video explaining tokens. https://www.youtube.com/watch?v=nKSk_TiR8YA by Matt Pocock.
  9. "Context window" is how many tokens the LLM will save to give your next questions context. Example: If you mention Python 3.14 in your first chat, and that first chat "scrolls off" the context window (it is no longer in the context window) you may have to mention again that you are using Python 3.14.

Some AIs are free, some cost a monthly fee, and for some you pay by the tokens used. There are also local free AIs that you can run on your own computer like Ollama and AnythingLLM. These are the two simplest to get running. But they generally need a GPU (video card) with more VRAM. Nvidia video cards are more widely supported with minimal or not extra setup. The larger the VRAM the larger the AI model the computer can handle because the software loads the whole model in memory. Without a GPU your answer will take a while to display. NVidia GPUs are the most widely supported GPUs by local AI software to use on your PC.

AI is changing so quickly that online tutorials are often outdated in 6-12 months. Example: Microsoft Copilot Studio tutorials. I recommend you do not use tutorials older than a year. And expect to hit roadblocks in almost every tutorial because a screen has changed. That is what I've found.

2 Types of AI

There are several types of AI which are specialized to do different things.

  1. Chatbot. This is where you ask AI a question and it gives you an answer based on the data it was trained on. If an AI is trained on biased data the answers will still be biased.
  2. Coding AI. These can help you write programs or just give snippets of code. Some are better than others.
  3. Image generator. This is an AI to generate images based on your prompt. You can specify the style of the image, objects in it, the background of the image, and more.
  4. Image identifier. This AI can identify what is in an image. You can ask it "Is this an image of a cat or dog?" Or just ask it "What animal is this?" This normally requires uploading an image to the AI.
  5. RAG is Retrieval Augmented Generation. This allows you to do research and get data only from the documents you give it. Documents can include Word files, PDF files, Youtube ideos, .txt files, and more. Which file types the AI service supports varies by the service. These are handy for putting your own research in and asking for a summary. There are many uses for RAG AI.
  6. Music generator. There are also Ais that can generate music. Specify the style, the tempo and more.
  7. Video generator. Generates videos. These use lots of processing power so any free versions will be very limited.
  8. Voice impersonator. This can speak text using the voice of someone else.
  9. OCR Processing. These are models that are specialized in extracting text from images. This is sometimes called "image-to-text". In some PDFs, like scanned PDFs on Google Scholar, the PDFs are just a series of images one image per page.
  10. Translator. An AI that translates from one language to another. This can be a written or spoken/audio language.

As AI improves there may be more types of AI created.

2.1 Model types

  1. Instruct model variations tend to be more accurate and use less tokens. These are also called "non-thinking" models, meaning you will not see how they think.
  2. Thinking models show you all the steps it is doing to get to its result. It is very wordy. Some thinking models support switches to turn off thinking, some do not support these switches. See "AI Switches" below.

2.2 AI Switches

Some AIs use switches like "/switch". For example, Qwen is a very wordy AI, what you see is it is "thinking". To use a switch add it to the end of your prompt. Here's a Qwen switch: "Tell me what a group of crows is called. /no_think". Turn on thinking again use "/think". See the individual model page for switches that it supports.

Or use the switch on the command line for models that support it: ollama run llama3.2 /set no_think

Using switches depends on how you are running the LLM and what switches the LLM supports.

2.2.1 LLama3.2

Run Llama3.2 via ollama and bash:

ollama run llama3.2:8b -t 0.7 --top-p 0.9 --repeat-penalty 1.1

Command line:

ollama run llama3.2:8b -t 0.7 --top-p 0.9 --repeat-penalty 1.1

Create a Modelfile, call it "my-llama".

# This is a comment. Put LLM name below. FROM llama3.2:8b PARAMETER temperature 0.7 PARAMETER top_p 0.9 PARAMETER repeat_penalty 1.1 PARAMETER num_predict 512

Using the Modelfile

  1. Edit a plain text file, put settings in it.
  2. Run this command at the CLI: ollama create my-llama -f my-llama. -f means use the following model file. This only needs to be done once or when you make changes to Model file. The data is stored internally.
  3. Now run your modelfile with ollama run my-llama. This works because the LLM is also listed in the Modelfile.

Setting LLM switches in Python:

from transformers import pipeline pipe = pipeline("text-generation", model="meta-llama/Llama-3.2-8B") output = pipe( "Explain black holes simply:", temperature=0.7, top_p=0.9, max_new_tokens=200 )

2.2.2 Qwen3

  1. /no_think. Usage, at the end of your prompt: What is a group of crows called? /no_think. To turn thinking back on do /think.
  2. Some models will accept /set no_think or /set think at the end of a prompt. Ex prompt: What color is the sky? /set no_think. This setting is saved until changed again.
  3. Qwen3 may or may not support switches. Some are automatically set to have thinking on. There may also be a version that does not think.
  4. Ollama may support switches when you run the model like: ollama run qwen3:4b /set no_think

2.3 Free chatbots online

You will need to sign into some of these if you want them to save your chat history. Many of these websites use common LLMs like LLama (from Meta), or GPT (from OpenAI). There are often various versions and sizes of each LLM.

  1. Aria. This is part of the Opera browser only. You must install the browser to use it. https://opera.com
  2. Chatgpt. (by OpenAI) You have to sign up but it no longer requires a cell phone to sign up. Limits have been reduced greatly, sometimes you have to wait 4 hours before chatting again. GPT is the AI model, ChatGPT is the app. https://chatgpt.com
    1. More GPTs that do various things. https://chatgpt.com/gpts
  3. Copilot (Microsoft). Requires a free login. I don't know what the limits are for the free personal account. Look on the sidebar for more features. Library: where you have AI make images, do research reports. Labs: other stuff MS is working on that you can try. Software in Labs may change frequently. https://copilot.com or https://copilot.microsoft.com
    1. 4/8/26 Microsoft Copilot (work account only) now supports Claude Sonnet LLM.
  4. DeepAI. You can choose multiple models here like GPT. https://deepai.org/
  5. Deepseek v3. I think this is one CCP AI. https://www.deepseekv3.net/
  6. Gemini. https://gemini.google.com This has been slower to answer questions since Apr 20, 2026. Generous limits, I have not hit a limit yet after asking about 15 questions in one day, spaced out throughout the day. Limits might be hourly. Gemini has built-in image generation called Nano Banana. If you go to Gemini and ask it "Make me an image of a cat" it will start up Nano Banana automatically.
  7. Gippr. Tusk browser is another browser as well. https://tuskbrowser.com/gippr/ The Tusk Browser can make a news feed just for you.
  8. Huggingface chat. Yes, Huggingface also has its own chatbot. https://huggingface.co/chat/ Huggingface also has forums on AI, 1000s of models to download, provides free 100GB of space for projects, many demo websites, and more. It's a major AI hub.
  9. iAsk. https://iask.ai
  10. Julius. Sign in is required before you can use this. https://julius.ai/ai-chatbot
  11. Leo. This is part of the Brave browser only, it does not have a separate AI website. You must install the browser then open the Leo sidebar. In the Advanced Settings there is a choice of different models, a free model is Claude Haiku, there are other premium (paid) model choices as well where you might have to enter your own API key. By default Leo can summarize the current web page you are looking at. https://brave.com
  12. LM Arena. Free chat, compare models side-by-side. https://arena.ai/
  13. LocalAI. Text generation. Image generation, Audio processing. Understand and analyze images. Multiple LLM model support. Model Context Protocol (MCP) for agentic capabilities. WebUI and REST API support. Local recall (based on your GPU memory). https://localai.io/features/
  14. Perchance. NO LIMITS. This is a more personable AI with a little humor. The avatar looks like anime. You can choose different personalities to talk to or make your own, generate images, do some roleplaying game on the fly, have a therapist personlity. If you edit an existing character you can save it as a new character or click on the Unknown character and describe how it should act. You can also backup your data using the Export button (which I assume are memories and settings.) If you go into Settings, on the left hand side click on your character to get back to your messages. https://perchance.org/ai-character-chat
  15. Perplexity AI is an AI-powered search engine and chatbot that utilizes advanced technologies such as natural language processing (NLP) and machine learning to provide accurate and comprehensive answers to user queries. https://perplexity.ai
  16. Qwen. Chinese model for programming. This model is better for programming than most other models. There are various versions and sizes of Qwen. https://chat.qwen.ai
  17. Talkie. Talk to an AI character. https://www.talkie-ai.com/
  18. WebLLM. This was very slow to respond, it is not usable. This could not answer basic questions like "How do I define what parameters are for an LLM". No login required as of 4/8/2025. But maybe this is some prototype or they don't yet have enough hardware to use, or they are not running it with a GPU. I don't know how this is different from Gemini or ChatGPT. As I ask a question it shows me status messages, how much data is fetched, and what percent of parameters have been fetched. 105 seconds have gone by with 100% fetched. I asked "How is food-based red dye made?" Chat: https://chat.webllm.ai/, https://webllm.mlc.ai/
Keep tags one line line or they will become headers.

Tags will be put at the end of each bullet: #monthly = cost is monthly, not based on tokens used. #tokenbased = cost is based on tokens used. Buy tokens and then refill as needed.

Since the AI industry is changing rapidly I will not put each plan features and cost here.

  1. Abacus.ai. Many models on line for $10usd/month. https://chat.abacus.ai #monthly
  2. Anthropic. With Claude, Sonnet and more LLMs. Claude pricing guide: https://claude.com/pricing #monthly
  3. ChatGPT. Has paid service. From OpenAI. https://chatgpt.com/pricing/ #tokenbased
  4. Gemini. Has paid service. From Google. https://notebooklm.google.com is a RAG AI to speak with your documents. Token-based API charges: https://blog.laozhang.ai/en/posts/gemini-api-pricing Plan type is unknown: https://ai.google.dev/gemini-api/docs/pricing #tokenbased
  5. Grok. Pricing guide from April 2026: https://grok.com/plans #monthly
  6. Groq. It uses a special GROQ LPU. Groq supports many models like LLMs, Text-to-speech, Automatic Speech Recognition, and other tools. They also have a table of how many tokens you get per dollar by plan. https://groq.com Pricing: https://groq.com/pricing #tokenbased
  7. Mammouth. This services has all major AI models for 10 euros/month. https://mammouth.ai Monthly Pricing: https://mammouth.ai/pricing #monthly
  8. Mistral. Mistral Token Use pricer, get monthly estimated prices based on your token use: https://flowlyn.com/tools/mistral-api-pricing-calculator or https://mistral.ai/pricing There are different plans for API use as well. API Pricing based on the LLM: https://mistral.ai/pricing#api #tokenbased #monthly
  9. NinjaChat. There is no free option, it always says "You are out of credits." At the top choose from many LLMs like: Seedance, Gemini 2.5 flash, Gemini 2.5 Pro, Gemini 3 Flash Preview, GPT models, O3 mini, Claude Sonnet 4.5, Claude Haiku 4.5, Llama models, Kimi models, GLM models. https://www.ninjachat.ai/
  10. Ollama. It has a free service but paid services start at $20usd/month or $200/year. Paid services are mostly to use the large cloud-based models. https://ollama.com/pricing Bug reports or help go to: mailto:hello@ollama.com
  11. OpenAI. Price comparison: https://www.cloudzero.com/blog/openai-pricing/ #tokenbased
  12. Openrouter. https://openrouter.ai Plans (I could not find actual prices): https://openrouter.ai/pricing #tokenbased

2.5 Free local AI

Run your AI locally at no charge! Some apps include RAG generation, some don't. Some support local and online models where you supply your API key (which costs money).

  1. AnythingLLM. Popular because its easy to use and doesn't need docker. It also supports a chatbot, multiple LLM models, RAG AI. https://anythingllm.com Their github: https://github.com/Mintplex-Labs/anything-llm Docs: https://docs.anythingllm.com/ Youtube tutorials: https://www.youtube.com/@TimCarambat
  2. Deepseek v3. At 671 billion parameters this is a monster size file to run locally. Estimated file size is 671GB. I think this one is Chinese. https://deepseekv3.net
  3. Freebuff. Free to start AI coding agent. It seems to use Minimax and Gemini 3.1 Flashlight for speed. https://freebuff.com Github: https://github.com/CodebuffAI/codebuff/blob/main/freebuff/README.md Install with npm only, so I don't see a Windows version yet.
    1. This NEW AI Coding Agent is 10x Faster Than Claude Code (100% Free): FreeBuff Guide to Build and Update AI Websites. https://canadiantechnologymagazine.com/freebuff-ai-coding-agent-free-guide/
  4. Guardvaark. Uses free Ollama models. Zero outbound network activity, designed for secure, critical networks. Features: agents, RAG search, video generation, video chat, image generation, find problems in programming code, GPU management, interconnector sync, content pipelines. https://guaardvark.com/ Github: https://github.com/guaardvark/guaardvark
  5. Hermes. This makes agents. Some people like this better than OpenClaw. It has: scheduled automations, it delegates and parallelizes, real sandboxing, full web and browser control. 40+ build in tools: 40+ built-in — web search, terminal, file system, browser automation, vision, image generation, text-to-speech, code execution, subagent delegation, memory, task planning, cron scheduling, multi-model reasoning, and more. Share skills via https://agentskills.io. On Windows this requires WSL2. Home page: https://hermes-agent.nousresearch.com/ Docs: https://hermes-agent.nousresearch.com/docs/
  6. LibreChat. https://librechat.ai
  7. Lllama.cpp. Hard to set up. Needs Docker. Often paired with another app. https://github.com/ggml-org/llama.cpp
  8. LobeChat. This makes agents too. https://lobehub.com
  9. NanoClaw. https://nanoclaw.dev
  10. Ollama. One of the most popular because it's easy to set up and doesn't require Docker. https://ollama.com/ Github: https://github.com/ollama/ollama
  11. Openclaw. Open source AI chat bot with agents you can make. This one is very popular. https://openclaw.ai Get more skills from others at https://clawhub.ai/. Github: https://github.com/openclaw/openclaw.
  12. Open WebUI. Can be hard to set up. Needs Docker. https://github.com/open-webui/open-webui
  13. Pi.dev. The base on which Openclaw was built. This is a minimal tool for AI to build your own tools. I don't know how else to describe it. "Pi is a minimal terminal coding harness. Adapt pi to your workflows, not the other way around. Extend it with TypeScript extensions, skills, prompt templates, and themes. Bundle them as pi packages and share via npm or git." It supports 15+ AI providers and hundreds of models. Sessions are stored as trees. https://pi.dev Github: https://github.com/badlogic/pi-mono/tree/main/packages/coding-agent
  14. PicoClaw. Runs on 10MB of RAM, start up is nearly instant. https://picoclaw.net
  15. ZeroClaw. RUST-based lightweight software to make agents. In contrast to traditional runtimes which consume significant memory and CPU even when idle, ZeroClaw operates with a minimal footprint, making it accessible to a wider range of hardware, from powerful servers to low-cost edge devices. https://zeroclaw.net/

2.6 Free image generators

NOTE: Free websites are often limited as using AI takes a lot of processing power. Some limits are higher than others. This is why we use local AIs.

  1. Adobe Firely. https://firefly.adobe.com/?promoid=DDSB1DXR&mv=other&mv2=unav&locale=en-US
  2. Bing (Dall-E). One of the top free image generators. Go to https://bing.com and click "Image Creator".
  3. Craiyon. https://www.craiyon.com/en
  4. Gemini. Google Gemini now will start Nano Banana if you want to create an image. https://gemini.google.com More info on Nano Banana: https://gemini.google/overview/image-generation/.
  5. Ideogram. https://ideogram.ai
  6. Leonardo. https://leonardo.ai
  7. LocalAI. Text generation. Image generation, Audio processing. Understand and analyze images. Multiple LLM model support. Model Context Protocol (MCP) for agentic capabilities. WebUI and REST API support. Local recall (based on your GPU memory). https://localai.io/features/
  8. Playground. Create AI images for tshirts, mugs, etc. https://playground.com/
  9. Z-image-turbo. An LLM to generate images. Try it: https://huggingface.co/spaces/mrfakename/Z-Image-Turbo
  10. Huggingface filter. This direct link to a filter will show all models to generate images from text. https://huggingface.co/models?pipeline_tag=image-text-to-text&sort=trending You can use the slider on the left side to limit the parameter size of the models.

2.7 Free music AI

  1. Riffusion. https://www.riffusion.com/ Give it a prompt to make music from. This is also a bot on Discord.
  2. Other. Look for other demo webpages in the area called Spaces on https://huggingface.co/spaces

2.8 AI video generators

NOTE: Some of these may be available through Ollama or another locally run AI.

  1. Google. https://aistudio.google.com/generate-video
  2. Kling. https://app.klingai.com
  3. Meshy. Convert a single image into a 3d printable file. https://meshy.ai
  4. Minimax. Free plan: Bonus credits for daily login. Standard plan: $14.99usd/month. https://minimaxaivideo.com/
  5. Sora. The app has been closed. I'm not sure about the website. It looks like you have to login to use the Sora website but the app has been discontinued. https://openai.com/sora/ https://sora.com
  6. Sora 2 Invideo. I'm not sure if this is related to OpenAI or not. https://invideo.io/make/sora/
  7. Search for more Sora sites. https://search.brave.com/search?q=sora+video+generator
  8. Trellis 2. By Microsoft. https://trellis2.com/
  9. Vizard. Turn your long videos into short clips with AI. No sign up required to try it. https://vizard.ai

2.9 OCR Models

To do OCR on a PDF you generally have to convert each page of the PDF to an image, like a PNG file. Then use a loop to process each PNG file to extract the text. Then check each image/page that the text is correct.

Some popular OCR models are: microsoft/trocr-base-printed, salesforce/blip-image-captioning-large,

  1. Go to https://huggingface.co/models?num_parameters=min:0,max:12B&sort=trending. Look for categories like "image-to-text".
  2. There are also python modules to do this, but I don't know how many there are or how accurate they are.

2.10 Free voice cloning

  1. VoxCPM2. Free AI to imitate voices. Supports 30 languages, several dialects. It does voice cloning. 8GB VRAM needed. 2B parameters. Try it: https://huggingface.co/spaces/openbmb/VoxCPM-Demo The model: https://huggingface.co/openbmb/VoxCPM2

2.11 Free coding AI

They help you write programs.

  1. Cursor. This is the AI that deleted PocketOS production data and all backups on a server, then lied about it. It eventually told the truth that it deleted these items. Use agents carefully and have off-site backups. https://cursor.com
  2. Deepsite. https://huggingface.co/spaces/enzostvs/deepsite
  3. Gemma. By Google. https://deepmind.google/models/gemma/gemma-4/ Also available for Ollama: https://ollama.com/models Search for Gemma.
  4. Lightning AI. Turn ideas into code. You get some free GPU time each month then pay as you go. https://lightning.ai/ Studio: https://lightning.ai/studio Persistent environment unlike Google Colab. mailto:support@lightning.ai
  5. Minimax. Use via cloud or local LLM. https://www.minimax.io/news/minimax-m25 Ollama supports Minimax: https://ollama.com/search
  6. QWEN 2.5 coder via Ollama. From Alibaba group.
    1. Qwen3.5 is released. Try https://ollama.com or https://huggingface.co/Qwen/Qwen3.5-9B
  7. Codellama via Ollama. "A large language model that can use text prompts to generate and discuss code". https://ollama.com
  8. VSC extensions. There are many Visual Studio Code extensions to help you connect with a remote (cloud) or local AI to help you code. Be careful, some LLMs just are not good at coding. Qwen models are generally good at coding.
    1. I use Gemini AI with an extension with VSC. It is slow on some days but limits are higher for the free account. Install the VSC extension and use your Gemini sign in username and password.
    2. Ollama models can also be connected to VSC with VSC extensions.
1. Mimo coding. $6 for 4 billion tokens? With a learning path for new users. Make real-world projects. Supports English and German. Paths for: Full-stack development, front-end or back-end, Python development. 1. Free program. For casual learners. This must have ads. 2. Pro. $9.99/month billed yearly. Unlimited keys, no ads. 3. Max. $24.99/month billed yearly. 4. Software dev with AI.

2.13 Chinese models

Chinese models have been shown to be a security risk where the actual LLM leaks data back to Chinese servers. This is a large security risk since China is famous for IP theft.

From 2025: DeepSeek exposes 1 million records. https://www.forbes.com/sites/larsdaniel/2025/02/01/deepseek-data-leak-exposes--1000000-sensitive-records/ Advisory: Block all China-hosted LLMs on Gov't networks. https://www.linkedin.com/pulse/advisory-block-china-hosted-llm-services-all-government-networks-hew3e/ Advisory: https://www.govbench.ai/Advisory-Block-China-hosted-LLM-Services-on-All-Government-Networks-2025-08-21-256f1791a534804e921add92d47b6fe4 (govbench.ai is not a US gov't website.)

May 2026: Claude Code routes code generation to Mistral/Deepseek, both of which are Chinese LLMs. Some Chinese LLMs have been known to leak your data to servers in China, so now Claude code may be a security risk. https://aiweekly.co/alerts/claude-code-skill-cuts-ai-costs-90-via-model-routing

  1. Baichuan family.
  2. ChatGLM (Zhipu).
  3. Deepseek family.
  4. Doubao (ByteDance).
  5. Douyin.
  6. ERNIE (Baidu).
  7. GLM series.
  8. Hunyuan (Tencent).
  9. Kimi (Moonshot).
  10. Mimo family.
  11. Minimax family.
  12. MOSS (Fudan University).
  13. Pangu (Huawei).
  14. Qwen family.
  15. Seedance (ByteDance).
  16. Spark (iFlytek).
  17. StepFun.
  18. Yi series (01.ai)
  19. Yuanbao (Tencent).

3 AI Forums

  1. AnythingLLM discord.
  2. Huggingface. This is one of the biggest AI forums. Huggingface is also a source for hundreds of LLM models to plug into software like Ollama and AnythingLLM, test AI sites testing these models, and much more. HF gives 100GB of free space to users for these items: "Spaces" are for running demo sites. "Hub" is for storing LLMs, and models. Currently they have 2.7 million models. https://discuss.huggingface.co
  3. Ollama discord. Find Discord invite at https://docs.ollama.com/

4 AI ranking lists

Aka "leaderboards". These are websites that test AI models and rank them on each test.

  1. Artificialanalysis.ai. Has bar graphs comparing LLMs for accuracy, cost per 1000 tokens, speed, etc. There is a scatter plot for intelligence vs cost. You want high intelligence and low cost for a good value. You can also get recommendations here based on your priorities if it is: tokens, intelligence, or speed. It compares 521+ models but only the top ones are in the initial graphs. They also have an "Artificial Analysis" index to give an overall rating of each LLM. https://artificialanalysis.ai
  2. Livebench. https://livebench.ai/
  3. *** LM Arena. User votes rank AI models. Compare 2 models side by side. This also has free chat. https://arena.ai/ Text-based model leaderboards are here: https://arena.ai/leaderboard/text Use the menu above to choose what type of leaderboard you see. For coding leaderboard go to https://arena.ai/leaderboard/code.
  4. LLM-stats. Top AI list by AICodeKing on Youtube. Choose an category of AI to see the rankings for that category. Sort on any column by clicking on the column header. One benchmark (column) is for coding and is called "SWE-BENCH" and another is "CODE ARENA". https://llm-stats.com/
  5. Lists on Reddit. https://old.reddit.com/r/LocalLLaMA/comments/1q1m4el/what_llm_benchmarking_sites_do_you_use/ https://old.reddit.com/r/LocalLLaMA/comments/1oeaucp/whats_the_best_and_most_reliable_llm_benchmarking/
  6. Huggingface explanation. https://discuss.huggingface.co/t/what-is-your-preferred-site-to-see-ai-scores-on-different-ai-tests/174698/2?u=bacca400

5 AI studies and key news

  1. 2025-0527 Only 8% of Americans would pay for AI. https://www.zdnet.com/article/only-8-of-americans-would-pay-extra-for-ai-according-to-zdnet-aberdeen-research/
  2. 2026-0200 The hype over AI has been over the top. First, around 70% of firms actively use AI, particularly younger, more productive firms. Second, while over two thirds of top executives regularly use AI, their average use is only 1.5 hours a week, with one quarter reporting no AI use. Third, firms report little impact of AI over the last 3 years, with over 80% of firms reporting no impact on either employment or productivity. https://www.nber.org/papers/w34836?utm_campaign=Artificial%2BIntelligence%2BWeekly&utm_medium=web&utm_source=Artificial_Intelligence_Weekly_467
  3. 2026-0110 List of AI study/survey results: 95% of AI pilots fail to deliver any measurable P&L impact or financial return. https://thefinancialbrand.com/news/artificial-intelligence-banking/why-95-of-enterprises-are-getting-zero-return-on-ai-investment-191950
  4. At least 30% of GenAI projects will be abandoned after proof-of-concept due to poor data quality. https://www.informatica.com/blogs/the-surprising-reason-most-ai-projects-fail-and-how-to-avoid-it-at-your-enterprise.html
  5. Only 15% of AI decision-makers reported any EBITDA lift in the past 12 months. https://www.forrester.com/blogs/predictions-2026-ai-moves-from-hype-to-hard-hat-work/
  6. Only 5% of companies are seeing measurable benefits from enterprise AI deployment. https://www.moomoo.com/news/post/59416533/goldman-sachs-ai-narrative-framework-five-key-controversies-surrounding-ai
  7. ROI on AI use cases take 2-4 years, much longer than the 7-12 months typical for tech. https://www.deloitte.com/global/en/issues/generative-ai/ai-roi-the-paradox-of-rising-investment-and-elusive-returns.html

5.1 Key news articles

  1. 2026-0223. GPT fails tests of triage. "ChatGPT Health performance in a structured test of triage recommendations." "Among gold-standard emergencies, the system undertriaged 52% of cases, directing patients with diabetic ketoacidosis or impending respiratory failure to 24–48 h evaluation rather than the emergency department, while correctly triaging classical emergencies such as stroke and anaphylaxis." https://www.nature.com/articles/s41591-026-04297-7 Alt link: https://pubmed.ncbi.nlm.nih.gov/41731097/
  2. 2026-0226. Eight times out of 10, ChatGPT Health sent a suffocating woman to a future appointment she would not live to see, researches discovered. ChatGPT Health regularly misses the need for medical urgent care and frequently fails to detect suicidal ideation, a study of the AI platform has found, which experts worry could “feasibly lead to unnecessary harm and death”. https://www.theguardian.com/technology/2026/feb/26/chatgpt-health-fails-recognise-medical-emergencies
  3. 2026-0408. Computerphile: Featuring academic experts, this channel frequently discusses the technical "nightmare" scenarios and safety concerns inherent in AI development. https://www.youtube.com/@computerphile
  4. 2026-0408. AI cannot get this answer right: How many r's in the word "strawberry". https://www.youtube.com/shorts/7pQrMAekdn4
  5. 2026-0408. Husk IRL shows the problems and hallucinations with AI. https://www.youtube.com/@HuskIRL

6 Memory and storage price histories

Memory and storage has gone up in price a lot since mid-2025. In some cases the memory or storage per unit price has gone up 700-1300%. Several major manufacturers are reporting their whole 2026 production run is already sold out to major customers, mainly datacenters that are being built. So the price of memory has become important. Meanwhile DRAM manufacturer revenue spikes with price increase. https://datatrack.trendforce.com/Chart/content/88/global-branded-dram-manufacturers-revenue-total Is this just about greed?

  1. HDD. This is Hard Disk Drives. They use magnetic media on spinning platters and are not as fast as SSDs. This is an older technology than SSDs.
  2. NAND memory is used for flash drives like SSDs, USB flash drives. It is much faster than HDDs (hard disk drives) since it has no moving parts.
  3. DDR4 and DDR5 are main computer RAM types. Memory types have different speeds even within the DDR4 and DDR5 categories.
  4. LPCAMM2 (Low Power Compression Attached Memory Module). This is the new laptop memory standard.
  5. HBM4 (High Bandwidth Memory 4) is the new standard for data centers and AI.

Historical prices

  1. DRAM Exchange. Has current prices with daily high and low, and a link to historical prices. But you need to be a member to get the historical prices. This also has AI and memory-related news. https://www.dramexchange.com/
  2. PC Part Picker. Pick your parts to build your own PC, but it also has historical memory prices. https://pcpartpicker.com/ Go to Trends page to see historical prices for CPUs, memory, monitors, power supplies, storage, video cards (GPUs). https://pcpartpicker.com/trends/ These graphs appear to show 18 months of data and that is not changeable.
  3. Trendforce DRAM spot price. Date range on graphs are adjustable. https://datatrack.trendforce.com/Chart/content/4694/mainstream-dram-spot-price Other semiconductors. https://datatrack.trendforce.com/industry-categories/1/Semiconductors

This page is at https://wordsalad26.neocities.org/aiintro

Go to home page at https://wordsalad26.neocities.org.

Created by the fabulous, and free, Pandoc document convertor. These pages were written in Markdown and converted to HTML with Pandoc.