llmplug
Version:
A library to easily integrate various LLM models and vendors into applications, with advanced features.
44 lines • 1.16 kB
JSON
{
"name": "llmplug",
"version": "0.1.0",
"description": "A library to easily integrate various LLM models and vendors into applications, with advanced features.",
"main": "src/index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"example": "node --env-file=.env examples/basicUsage.js",
"simple-example": "node --env-file=.env examples/simpleUsage.js",
"advanced-example": "node --env-file=.env examples/advancedUsage.js"
},
"keywords": [
"llm",
"ai",
"openai",
"anthropic",
"google",
"gemini",
"huggingface",
"cohere",
"mistral",
"nlp",
"generative-ai",
"streaming",
"function-calling",
"tool-use",
"multimodal"
],
"author": "Adarsh C <adarsh@insanelyelegant.com>",
"license": "MIT",
"dependencies": {
"openai": "^4.33.0",
"@anthropic-ai/sdk": "^0.20.1",
"@google/generative-ai": "^0.10.0",
"node-fetch": "^3.3.2",
"file-type": "^19.0.0",
"cohere-ai": "^7.9.5",
"@mistralai/mistralai": "^0.1.3"
},
"engines": {
"node": ">=18.0.0"
}
}