UNPKG

@robota-sdk/anthropic

Version:

Anthropic Claude integration for Robota SDK - Claude 3, Claude 2, function calling, and tool integration with Anthropic's API

80 lines 1.93 kB
{ "name": "@robota-sdk/anthropic", "version": "1.0.3", "description": "Anthropic Claude integration for Robota SDK - Claude 3, Claude 2, function calling, and tool integration with Anthropic's API", "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/anthropic" }, "homepage": "https://robota.io/", "bugs": { "url": "https://github.com/woojubb/robota/issues" }, "files": [ "dist" ], "keywords": [ "ai", "agent", "llm", "anthropic", "claude", "claude-3", "claude-2", "function-calling", "typescript", "javascript", "chatbot", "conversational-ai", "artificial-intelligence", "machine-learning", "nlp", "natural-language-processing", "sdk", "library", "tool-integration", "robota", "anthropic-api", "ai-integration", "claude-ai" ], "author": "Robota SDK Team", "license": "MIT", "dependencies": { "@anthropic-ai/sdk": "^0.24.0" }, "peerDependencies": { "@robota-sdk/core": "1.0.3", "@robota-sdk/tools": "1.0.3" }, "devDependencies": { "@typescript-eslint/eslint-plugin": "^6.18.0", "@typescript-eslint/parser": "^6.18.0", "eslint": "^8.56.0", "rimraf": "^5.0.5", "tsup": "^8.0.1", "typescript": "^5.3.3", "vitest": "^1.1.0", "@robota-sdk/core": "1.0.3", "@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" } }