Skip to main content
Release notes and version history for the Flint AI TypeScript SDK.
August 20, 2026
Documentation update. The README install and import examples now use the scoped package name, @sandboxaq/flintai-sdk-ts. No changes to the API or behavior.
August 19, 2026
Initial public release of the Flint AI TypeScript SDK.Added:
  • wrap() - Wrap an existing LLM client with one function call to route its traffic through the Flint AI gateway, so you can see its sessions and apply guardrails to its responses. Your prompts, model choice, and the rest of your code stay as they are. See usage
  • Provider integrations - OpenAI, Anthropic, and Google GenAI clients, plus LangChain chat models and a Google ADK plugin. See integrations
  • Optional peer dependencies - The base package has no runtime dependencies. Each provider library is an optional peer, loaded only when you route through that provider, and wrap() checks the installed version at runtime. See installation
  • Environment and inline configuration - Set the gateway URL, API key, and optional policy through environment variables, a .env file, or arguments to wrap(). See configuration
  • Node.js 18 or later