UNPKG

@robota-sdk/core

Version:

Core functionality for building AI agents with TypeScript - conversation management, function calling, and multi-provider support for OpenAI, Anthropic, and Google AI

81 lines 1.97 kB
{ "name": "@robota-sdk/core", "version": "1.0.3", "description": "Core functionality for building AI agents with TypeScript - conversation management, function calling, and multi-provider support for OpenAI, Anthropic, and Google AI", "type": "module", "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "repository": { "type": "git", "url": "https://github.com/woojubb/robota.git", "directory": "packages/core" }, "homepage": "https://robota.io/", "bugs": { "url": "https://github.com/woojubb/robota/issues" }, "files": [ "dist" ], "keywords": [ "ai", "agent", "llm", "function-calling", "typescript", "javascript", "openai", "anthropic", "google-ai", "claude", "gpt", "gemini", "chatbot", "conversational-ai", "artificial-intelligence", "machine-learning", "nlp", "natural-language-processing", "sdk", "library", "tool-integration", "multi-provider", "conversation-management", "robota" ], "author": "Robota SDK Team", "license": "MIT", "dependencies": { "@dqbd/tiktoken": "^1.0.21", "zod": "^3.24.4" }, "peerDependencies": { "@robota-sdk/tools": "1.0.3" }, "devDependencies": { "@typescript-eslint/eslint-plugin": "^6.18.0", "@typescript-eslint/parser": "^6.18.0", "@vitest/coverage-v8": "^3.1.3", "eslint": "^8.56.0", "rimraf": "^5.0.5", "tsup": "^8.0.1", "typescript": "^5.3.3", "vitest": "^1.1.0", "@robota-sdk/tools": "1.0.3" }, "publishConfig": { "access": "public" }, "scripts": { "build": "tsup", "dev": "tsup --watch", "clean": "rimraf dist", "typecheck": "tsc --noEmit", "test": "vitest run --passWithNoTests", "test:watch": "vitest", "test:coverage": "vitest run --coverage", "lint": "eslint src --ext .ts,.tsx", "lint:fix": "eslint src --ext .ts,.tsx --fix" } }