A plugin for llm that lets you run free LLMs through freellmpool — which pools the free tiers of 16 providers (Groq, Cerebras, NVIDIA NIM, Gemini, OpenRouter, Cloudflare, …) with automatic failover. It works with zero API keys thanks to freellmpool's keyless providers.
llm install llm-freellmpoolllm -m freellmpool "Explain the CAP theorem in one sentence."That's it — no key required. Pipe context in like any llm model:
cat error.log | llm -m freellmpool "What's the root cause?"Pick a specific free provider or model with the target option:
llm -m freellmpool -o target groq "Say hi"
llm -m freellmpool -o target groq/llama-3.3-70b-versatile "Say hi"Add provider keys as environment variables (GROQ_API_KEY, CEREBRAS_API_KEY, …)
to unlock more models and higher limits. See the
freellmpool docs.
MIT