A unified response parser and SDK generator for LLM APIs across multiple programming languages
LLM-Forge provides a production-ready, type-safe way to parse and normalize responses from multiple LLM providers (OpenAI, Anthropic, Cohere, Google AI, Mistral, and more) with support for generating client libraries in 6 languages: TypeScript, Python, Rust, Go, Java, and C#.
Why LLM-Forge?
- ๐ Unified API - One interface for 12+ LLM providers
- ๐ Ultra-Fast - 136K-454K ops/sec parsing performance
- ๐ก๏ธ Type-Safe - Full TypeScript inference and validation
- ๐งช Battle-Tested - 666 tests, 93.77% coverage
- ๐ฆ Zero Dependencies - Lightweight, production-ready
- ๐ Multi-Language - Generate SDKs in 6 languages
- Features
- Status
- Quick Start
- Use Cases
- Supported Providers
- Code Generation
- Performance
- Testing
- Security
- Documentation
- Development
- Contributing
- Roadmap
- Support
- โ Multi-Provider Parsing: Unified response format for 12 LLM providers
- โ Auto-Detection: Automatically detect provider from response structure
- โ Streaming Support: Real-time streaming chunk parsing
- โ Type-Safe: Full TypeScript type inference and safety
- โ Production Ready: 93.77% test coverage, 666 passing tests
- โ High Performance: 136K-454K ops/sec parsing, 1-10M ops/sec detection
- โ TypeScript: Full type inference, decorators, async/await
- โ Python: Type hints, Pydantic models, async support
- โ Rust: Serde, strong typing, Result<T,E>
- โ Java: Record classes, Jackson, CompletableFuture
- โ C#: Record types, System.Text.Json, async streams
- โ Go: Struct tags, JSON marshaling, context support
- โ CI/CD Pipeline: 7 GitHub Actions workflows for automation
- โ Security Scanning: Multi-layer security with CodeQL, npm audit, OSSF
- โ Performance Monitoring: Automated benchmarking and regression detection
- โ Automated Releases: npm and GitHub Packages publishing
- โ Comprehensive Documentation: Production guides and API docs
Production Ready โ
Test Coverage: 93.77% โ
Tests Passing: 666/666 (100%) โ
Benchmarks: 27 performance tests โ
CI/CD: 7 automated workflows โ
Documentation: Complete โ
# Using npm
npm install @llm-dev-ops/llm-forge
# Using yarn
yarn add @llm-dev-ops/llm-forge
# Using pnpm
pnpm add @llm-dev-ops/llm-forgeimport { parseResponse } from '@llm-dev-ops/llm-forge';
// Parse any LLM provider response - automatically detects the provider
const response = await fetch('https://api.openai.com/v1/chat/completions', {
method: 'POST',
headers: {
'Authorization': `Bearer ${process.env.OPENAI_API_KEY}`,
'Content-Type': 'application/json'
},
body: JSON.stringify({
model: 'gpt-4',
messages: [{ role: 'user', content: 'Hello, world!' }]
})
});
const data = await response.json();
const parsed = await parseResponse(data);
if (parsed.success) {
console.log(parsed.response.messages[0].content);
// Output: "Hello! How can I help you today?"
console.log(`Provider: ${parsed.response.provider}`);
// Output: "Provider: openai"
console.log(`Model: ${parsed.response.model.id}`);
// Output: "Model: gpt-4"
console.log(`Tokens: ${parsed.response.usage.totalTokens}`);
// Output: "Tokens: 25"
}import { parseResponse } from '@llm-dev-ops/llm-forge';
async function chat(provider: 'openai' | 'anthropic' | 'cohere', message: string) {
// Use any provider's API - LLM-Forge normalizes the response
const endpoints = {
openai: 'https://api.openai.com/v1/chat/completions',
anthropic: 'https://api.anthropic.com/v1/messages',
cohere: 'https://api.cohere.ai/v1/chat'
};
const response = await fetch(endpoints[provider], {
method: 'POST',
headers: { /* provider-specific headers */ },
body: JSON.stringify({ /* provider-specific payload */ })
});
const data = await response.json();
const parsed = await parseResponse(data);
if (parsed.success) {
return {
text: parsed.response.messages[0].content,
tokens: parsed.response.usage.totalTokens,
cost: calculateCost(parsed.response.usage, parsed.response.model.id)
};
}
throw new Error(parsed.error.message);
}
// Works seamlessly with any provider
const openAIResult = await chat('openai', 'Explain quantum computing');
const claudeResult = await chat('anthropic', 'Explain quantum computing');
const cohereResult = await chat('cohere', 'Explain quantum computing');import { parseResponse } from '@llm-dev-ops/llm-forge';
// Automatically detects provider from response structure
const openAIResponse = await parseResponse(openAIData); // Detects OpenAI
const anthropicResponse = await parseResponse(claudeData); // Detects Anthropic
const cohereResponse = await parseResponse(cohereData); // Detects CohereBuild chatbots that can seamlessly switch between different LLM providers based on cost, performance, or availability.
Create a unified interface for your application that works with any LLM provider, making it easy to switch providers or A/B test different models.
Parse usage data from multiple providers to track and optimize token usage and costs across your organization.
Generate type-safe client libraries in multiple programming languages from OpenAPI specifications, accelerating development across teams.
Build an LLM gateway that routes requests to different providers, normalizes responses, and provides unified monitoring and analytics.
Easily switch between providers during development and testing without changing your application code.
import { OpenAIProvider, AnthropicProvider } from '@llm-dev-ops/llm-forge';
const openai = new OpenAIProvider();
const result = await openai.parse(openAIResponse);
const anthropic = new AnthropicProvider();
const claudeResult = await anthropic.parse(anthropicResponse);import { OpenAIProvider } from '@llm-dev-ops/llm-forge';
const provider = new OpenAIProvider();
// Parse streaming chunks
for await (const chunk of streamingResponse) {
const parsed = await provider.parseStream(chunk);
if (parsed.success) {
process.stdout.write(parsed.response.messages[0].content);
}
}| Provider | Status | Detection | Parsing | Streaming |
|---|---|---|---|---|
| OpenAI | โ Complete | โ | โ | โ |
| Anthropic | โ Complete | โ | โ | โ |
| Google AI | โ Complete | โ | โ | โ |
| Cohere | โ Complete | โ | โ | โ |
| Mistral | โ Complete | โ | โ | โ |
| Azure OpenAI | โ Complete | โ | โ | โ |
| Hugging Face | โ Complete | โ | โ | |
| Replicate | โ Complete | โ | โ | |
| Together AI | โ Complete | โ | โ | |
| Perplexity | โ Complete | โ | โ | โ |
| OpenRouter | โ Complete | โ | โ | โ |
| Custom | โ Complete | โ | โ |
import { generateTypeScript } from '@llm-dev-ops/llm-forge';
const schema = {
name: 'ChatCompletion',
properties: {
messages: { type: 'array', items: { type: 'Message' } },
model: { type: 'string' }
}
};
const code = await generateTypeScript(schema);
console.log(code);| Language | Status | Package Manager | Type Safety | Async Support |
|---|---|---|---|---|
| TypeScript | โ Complete | npm | Full | async/await |
| Python | โ Complete | pip | Type hints | async/await |
| Rust | โ Complete | cargo | Strong | tokio |
| Java | โ Complete | Maven/Gradle | Strong | CompletableFuture |
| C# | โ Complete | NuGet | Strong | async/await |
| Go | โ Complete | go modules | Static | goroutines |
Provider Detection:
- OpenAI: 9.7M ops/sec
- Anthropic: 9.4M ops/sec
- Cohere: 8.7M ops/sec
- Mistral: 6.7M ops/sec
- Google AI: 5.5M ops/sec
Response Parsing:
- Mistral: 454K ops/sec (fastest)
- OpenAI: 422K ops/sec
- Anthropic: 368K ops/sec
- Cohere: 313K ops/sec
- Google AI: 137K ops/sec
Streaming:
- OpenAI: 504K chunks/sec
- Anthropic: 485K chunks/sec
Benchmarked on Node.js 20 with Vitest bench suite (27 benchmarks)
LLM-Forge uses a layered architecture:
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Provider Responses (OpenAI, Anthropic, etc.) โ
โโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ
โโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Provider Detection & Auto-detection โ
โโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ
โโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Unified Response Parsing โ
โ - Message extraction โ
โ - Metadata normalization โ
โ - Token usage tracking โ
โ - Error handling โ
โโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ
โโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Code Generation (6 languages) โ
โ - Type generation โ
โ - Client generation โ
โ - Serialization โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
See docs/ARCHITECTURE.md for detailed architecture documentation.
Overall Coverage: 93.77%
Providers Coverage: 92.68%
Generators Coverage: 98.17%
Parsers Coverage: 98.04%
Core Coverage: 97.73%
Total Tests: 666 passing
Test Files: 23 files
Duration: ~10 seconds
# Run all tests
npm test
# Run with coverage
npm run test:coverage
# Run benchmarks
npm run bench
# Run specific test file
npm test tests/providers/integration.test.tsLLM-Forge implements multiple security layers:
- โ Daily Security Scans: Automated vulnerability detection
- โ CodeQL Analysis: Static security analysis
- โ Secret Detection: TruffleHog scanning
- โ License Compliance: Automated license checking
- โ Dependency Updates: Dependabot automation
- โ OSSF Scorecard: Security best practices validation
See docs/CI_CD_PIPELINE.md for security documentation.
7 automated workflows ensure quality:
- PR Validation - Quality gates for pull requests
- Continuous Integration - Multi-OS testing (Ubuntu, macOS, Windows)
- Security Scanning - Multi-layer security analysis
- Performance Monitoring - Benchmark tracking and regression detection
- Release & Publish - Automated npm publishing
- Dependabot Auto-Merge - Safe dependency updates
- Stale Management - Issue/PR lifecycle management
See .github/README.md for workflow documentation.
- Production Readiness - Deployment guide
- CI/CD Pipeline - Pipeline documentation
- Architecture - System architecture
- Provider System - Provider implementation
- Template Engine - Code generation templates
- Language Strategy - Multi-language support
- Implementation Summary - Complete implementation details
- DevOps Deliverables - CI/CD and deployment details
- Multi-Language Success - Code generation implementation
- Node.js >= 20.0.0
- npm >= 10.0.0
- TypeScript >= 5.3.3
# Clone repository
git clone https://github.com/globalbusinessadvisors/llm-forge.git
cd llm-forge
# Install dependencies
npm install
# Run tests
npm test
# Build project
npm run build
# Run development mode
npm run dev
# Run benchmarks
npm run bench
# Run all quality checks
npm run qualityLLM-Forge includes a command-line interface for generating SDKs:
# Run CLI in development
npm run cli -- --help
# Generate SDK from OpenAPI spec
npm run cli -- generate --input openapi.json --output ./sdk --language typescript
# After installation (globally or in project)
npx llm-forge generate --input openapi.json --language pythonllm-forge/
โโโ src/
โ โโโ core/ # Template engine and type system
โ โโโ generators/ # Language-specific code generators
โ โโโ parsers/ # OpenAPI and Anthropic parsers
โ โโโ providers/ # Provider-specific parsers (12 providers)
โ โโโ schema/ # Schema validation
โ โโโ types/ # TypeScript type definitions
โโโ tests/
โ โโโ core/ # Core functionality tests
โ โโโ generators/ # Code generator tests
โ โโโ parsers/ # Parser tests
โ โโโ providers/ # Provider tests (integration, benchmarks)
โ โโโ schema/ # Schema validation tests
โโโ docs/ # Comprehensive documentation
โโโ examples/ # Example usage
โโโ scripts/ # Build and utility scripts
โโโ .github/
โโโ workflows/ # 7 CI/CD workflows
โโโ dependabot.yml # Dependency automation
npm test # Run all tests
npm run test:coverage # Run tests with coverage report
npm run bench # Run performance benchmarks
npm run type-check # TypeScript type checking
npm run lint # ESLint code linting
npm run format # Prettier code formatting
npm run build # Build package
npm run clean # Clean build artifacts
npm run quality # Run all quality checksWe welcome contributions! Please follow these steps:
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Make your changes with tests
- Run quality checks (
npm run quality) - Commit your changes (
git commit -m 'feat: add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
All PRs must pass:
- โ TypeScript type checking
- โ ESLint linting
- โ Prettier formatting
- โ All 666 tests
- โ 93%+ code coverage
- โ Security scans
See docs/CI_CD_PIPELINE.md for detailed contribution guidelines.
npm install @llm-dev-ops/llm-forgenpm install @llm-dev-ops/llm-forge- โ Provider response parsing (12 providers)
- โ Unified response format
- โ Auto-detection system
- โ Streaming support
- โ TypeScript generator
- โ Python generator
- โ Rust generator
- โ Java generator
- โ C# generator
- โ Go generator
- โ Comprehensive testing (666 tests)
- โ 93.77% code coverage
- โ Performance benchmarking
- โ CI/CD pipeline (7 workflows)
- โ Security scanning
- โ Complete documentation
- CLI tool for SDK generation
- Plugin system for custom providers
- Cost tracking and analytics
- Advanced observability
- Custom provider templates
- GraphQL support
Apache License 2.0 - see LICENSE for details.
Built with enterprise-grade quality using:
- Testing: Vitest
- CI/CD: GitHub Actions
- Security: CodeQL, TruffleHug, OSSF Scorecard
- Coverage: Codecov
- Type Safety: TypeScript
Lines of Code: ~15,000
Test Coverage: 93.77%
Tests: 666 passing
Benchmarks: 27 performance tests
Providers: 12 supported
Languages: 6 code generators
CI/CD Workflows: 7 automated
Documentation: 35+ comprehensive docs
Performance: 136K-454K ops/sec parsing
Security: Multi-layer scanning
- Documentation: docs/
- Issues: GitHub Issues
- Discussions: GitHub Discussions
- CI/CD Status: GitHub Actions
- npm Package: npmjs.com
- Coverage: Codecov
Status: โ Production Ready | License: Apache 2.0 | Version: 1.0.0
Made with โค๏ธ by the LLM-Dev-Ops Team
Getting Started ยท Documentation ยท Report Bug ยท Request Feature