@llumiverse/core
Version:
Provide an universal API to LLMs. Support for existing LLMs can be added by writing a driver.
91 lines • 2.06 kB
JSON
{
"name": "@llumiverse/core",
"version": "0.22.2",
"type": "module",
"description": "Provide an universal API to LLMs. Support for existing LLMs can be added by writing a driver.",
"files": [
"lib",
"src"
],
"keywords": [
"llm",
"ai",
"prompt",
"prompt engineering",
"ml",
"machine learning",
"embeddings",
"training",
"model",
"universal",
"api",
"chatgpt",
"openai",
"vertexai",
"bedrock",
"replicate",
"huggingface",
"togetherai"
],
"types": "./lib/types/index.d.ts",
"typesVersions": {
"*": {
"async": [
"./lib/types/async.d.ts"
],
"formatters": [
"./lib/types/formatters/index.d.ts"
]
}
},
"exports": {
".": {
"types": "./lib/types/index.d.ts",
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js"
},
"./async": {
"types": "./lib/types/async.d.ts",
"import": "./lib/esm/async.js",
"require": "./lib/cjs/async.js"
},
"./formatters": {
"types": "./lib/types/formatters/index.d.ts",
"import": "./lib/esm/formatters/index.js",
"require": "./lib/cjs/formatters/index.js"
}
},
"author": "Llumiverse",
"license": "Apache-2.0",
"homepage": "https://github.com/vertesia/llumiverse",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/vertesia/llumiverse.git"
},
"devDependencies": {
"@vertesia/api-fetch-client": "^0.74.0",
"rimraf": "^6.0.1",
"ts-dual-module": "^0.6.3",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"dependencies": {
"@types/node": "^22.17.1",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"jsonrepair": "^3.13.1",
"@llumiverse/common": "0.22.2"
},
"ts_dual_module": {
"outDir": "lib",
"exports": {
"async": "async.js",
"formatters": "formatters/index.js"
}
},
"scripts": {
"test": "vitest run",
"build": "pnpm exec tsmod build",
"clean": "rimraf ./lib tsconfig.tsbuildinfo"
}
}