AIAny
AI API2023
Icon for item

LiteLLM

Calls 100+ LLM providers — OpenAI, Anthropic, Gemini, Bedrock, Azure — through one OpenAI-compatible API, as a Python SDK or self-hosted proxy. The proxy adds virtual keys, spend tracking, rate limits, and load balancing across models and providers.

Introduction

Every team that touches more than one model provider eventually writes the same glue: a layer that reshapes requests, normalizes errors, and tracks who spent what. LiteLLM is that layer extracted into one project — the OpenAI request/response shape becomes the common dialect, and 100+ providers get mapped onto it, so switching models is a string change rather than a rewrite.

What Sets It Apart
  • Two surfaces from one mapping: import it as a Python SDK for in-process calls, or run the same logic as a standalone proxy so non-Python services hit a single endpoint. Teams usually start with the SDK and graduate to the proxy once spend becomes political.
  • The proxy is where the real value sits — virtual keys, per-key and per-team budgets, spend logs, rate limits, and load balancing across deployments of the same model. This is the governance layer most companies would otherwise build in-house.
  • Failure handling is uniform: provider-specific errors, retries, and fallbacks are normalized to OpenAI semantics, so a flaky Bedrock region can fall back to Azure without app code knowing.
  • Coverage reaches past chat — embeddings, image generation, audio transcription, and batch endpoints are mapped too.
Great Fit / Look Elsewhere

Great fit if you serve several teams or apps across multiple providers and need cost attribution, key management, and failover without coupling each service to a vendor SDK — the proxy turns model access into a governed internal service. Look elsewhere if you call a single provider from a single app, where the abstraction just adds a hop and a dependency you won't use, or if you need deep provider-specific features that the lowest-common-denominator OpenAI schema flattens away.

More Items

GitHub
AI Agent2026

Provides a lightweight Python harness that turns LLMs into working agents with tool-use, skills, persistent memory, permission controls and multi-agent coordination. Ships with a CLI/React TUI, 43+ built-in tools, a plugin/skill system and the ohmo personal-agent for chat gateways. Best for developers prototyping agent workflows and multi-agent experiments.

GitHub
AI Model2026

Runs the Bonsai family of quantized LLMs locally (including vision-capable 27B): provides scripts and demo UIs to run 1-bit and ternary Bonsai models on macOS (Metal), Linux/Windows (CUDA/Vulkan/ROCm), or CPU, with long context, tool-calling and an optional Open WebUI agent demo.

GitHub
AI Client2025

Turns Chromium into a local-first AI browser with an embedded assistant that can summarise pages, extract structured data, automate web tasks, and run scheduled agents. Built as an open-source Chromium fork with 53+ built-in browser tools, 40+ app integrations, and support for BYO AI keys or fully local models (Ollama / LM Studio).