v1.0.0 Beta
UNIVERSAL
AI ADAPTER
LAYER.
[TEKIMAX.SDK] End-to-end TypeScript support. Hardened supply chain. Zod schemas for runtime validation of every request/response.
// INSTALLATION
➜npm install tekimax-ts
USAGE_PREVIEW.TS
import { Tekimax } from 'tekimax-ts';
import { AnthropicProvider } from 'tekimax-anthropic';
const client = new Tekimax({
provider: new AnthropicProvider({
apiKey: process.env.ANTHROPIC_KEY
})
});
const stream = await client.chat.completions.create({
model: 'claude-3-5-sonnet-20240620',
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.
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