UNPKG

multi-llm

Version:

A unified TypeScript/JavaScript package to use LLMs across ALL platforms with support for 17 major providers, streaming, MCP tools, and intelligent response parsing

70 lines (69 loc) 1.49 kB
{ "name": "multi-llm", "version": "1.1.1", "description": "A unified TypeScript/JavaScript package to use LLMs across ALL platforms with support for 17 major providers, streaming, MCP tools, and intelligent response parsing", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "tsc", "dev": "tsc --watch", "test": "jest", "test:coverage": "jest --coverage", "prepublishOnly": "npm run build && npm test", "clean": "rm -rf dist" }, "keywords": [ "llm", "ai", "openai", "anthropic", "claude", "chatgpt", "gemini", "cohere", "mistral", "groq", "cerebras", "ollama", "openrouter", "azure", "perplexity", "deepinfra", "replicate", "huggingface", "bedrock", "aws", "google", "together", "fireworks", "streaming", "mcp", "typescript", "javascript", "nodejs" ], "author": "Tycho Luyben", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/tluyben/multi-llm.git" }, "bugs": { "url": "https://github.com/tluyben/multi-llm/issues" }, "homepage": "https://github.com/tluyben/multi-llm#readme", "devDependencies": { "@types/node": "^20.0.0", "@types/jest": "^29.0.0", "jest": "^29.0.0", "ts-jest": "^29.0.0", "dotenv": "^16.0.0", "typescript": "^5.0.0" }, "dependencies": { "axios": "^1.6.0" }, "files": [ "dist/**/*" ] }