AI ADAPTER
LAYER.
[TEKIMAX.SDK] End-to-end TypeScript support. Hardened supply chain. Zod schemas for runtime validation of every request/response.
// INSTALLATION
import { Tekimax, AnthropicProvider } from 'tekimax-ts';
const client = new Tekimax({
provider: new AnthropicProvider({
apiKey: process.env.ANTHROPIC_API_KEY
})
});
const stream = await client.text.chat.completions.create({
model: 'claude-4.6',
messages: [{ role: 'user', content: 'Hello' }],
stream: true
});Universal API
One interface for all providers. Switch from OpenAI to Ollama with a single config change.
Type Safety
End-to-end TypeScript support. Zod schemas for runtime validation of every request/response.
Zero Latency
Lightweight adapter pattern with zero runtime overhead. Direct passthrough performance.
Zero CVEs
Hardened supply chain. Built on Chainguard's secure Node.js runtime and continuously scanned by Trivy for zero vulnerabilities.
Edge Caching
Built-in Redis utilities for response caching, rate limiting, and exact token budgets.
Support the Development
Tekimax is open source and free to use. If you find it valuable for your startup or enterprise, considering becoming a sponsor to ensure long-term sustainability.
Become a SponsorBuilt by Tekimax • Type-Safe by Default