LLM Tools

Here I list all sorts of tools that use LLMs (Large Language Models). I feel ambivalent about hosting a ressource list that use those insidious tools. When I get around to it, I will link a blog post that talks about the problems inherent to LLMs and other «AI» tools.

In the mean time, here is a non-exhaustive list of articles on the subject of LLM assisted creation (mostly coding).

VERY IMPORTANT → Hallucinations in code are the least dangerous form of LLM mistakes

Providers

To check prices for different models and providers, you can refer to this incredible LLM Pricinc Calculator. It has the pricing for Input and Output costs for different models, as well as a calculator that takes as parameters the number of input and output tokens. This tool is made and maintained by the amazing Simon Willison.

Cloud

Openrouter.ai is a platform that enables you to have a single api key to be used with multiple models, including private ones.

  • Anthropic $
  • OpenAI $
  • Google Gemini ($)
  • Mistral ($)
  • Deepseek $
  • Qwen $
  • Amazon $
  • Perplexity ($)
  • Meta ($)

Local

  • Llama.ccp, inference engine in C/C++, very efficient and is the basis for most other serving tools.
  • Ollama, go based hosting tool, with a good DL directory of models. It serves an OpenAI compatible API endpoint.
  • Llamafile cross-platform model in a file, that runs both with CLI interface, web interface, and can also serve as an OpenAI compatible API endpoint.
  • LM Studio, electron based local interface, model curated, local server capable app. Not entirely open source though.

CLI

  • llm, a python CLI tool with a really cool range of features and uses, also by Simon Willison.
  • Aider.chat, a python cli llm «agent» that sort of automates programming. You can connect all sorts of providers to it, including your own locally served models (via Ollama,Llama.ccp, VLLM, LM Studio).
  • Anthropic Code
  • OpenAi Codex

Editors

  • Cursor, electron VSCode-based LLM-enabled editor, not FOSS.
  • Void, Cursor clone, FOSS.

Tags: #llm #ai #tool #list #code #programming

↑ Back to the top