contextual-agent-sdk
Version:
SDK for building AI agents with seamless voice-text context switching
108 lines (107 loc) • 3.1 kB
JSON
{
"name": "contextual-agent-sdk",
"version": "1.3.2",
"description": "SDK for building AI agents with seamless voice-text context switching",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "nodemon src/demo/server.ts",
"start": "node dist/demo/server.js",
"test": "node test-runner.js",
"test:watch": "jest --watch",
"test:integration": "node tests/integration/context-bridging.test.js",
"test:core": "node tests/core/session-manager.test.js",
"lint": "eslint src/**/*.ts",
"clean": "rm -rf dist",
"demo": "ts-node src/demo/server.ts",
"demo:investor": "node examples/investor-demo.js",
"demo:multi-llm": "node examples/multi-llm-demo.js",
"setup": "cp .env.example .env && echo '✅ Environment file created! Edit .env with your API keys.'",
"validate-setup": "node scripts/validate-setup.js",
"monitor": "node scripts/monitor-usage.js",
"monitor:watch": "watch 'npm run monitor' scripts/"
},
"keywords": [
"ai",
"agents",
"voice",
"text",
"contextual",
"conversation",
"sdk",
"multimodal",
"speech-to-text",
"text-to-speech",
"llm",
"openai",
"anthropic"
],
"author": {
"name": "simcoder technologies a subsidiary of SCS Group",
"email": "contact@simcoder.tech",
"url": "https://simcoder.tech"
},
"contributors": [
{
"name": "simcoder technologies a subsidiary of SCS Group",
"email": "contact@simcoder.tech",
"url": "https://simcoder.tech"
}
],
"license": "MIT",
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.6",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"eslint": "^9.17.0",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.59.0",
"@types/mongodb": "^4.0.6",
"@types/uuid": "^10.0.0",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"mongodb": "^6.18.0",
"openai": "^4.0.0",
"redis": "^5.7.0",
"uuid": "^11.1.0",
"zod": "^3.24.1"
},
"peerDependencies": {
"openai": "^4.0.0"
},
"peerDependenciesMeta": {
"openai": {
"optional": true
}
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/simcoder/contextual-agent-sdk.git"
},
"bugs": {
"url": "https://github.com/simcoder/contextual-agent-sdk/issues"
},
"homepage": "https://github.com/simcoder/contextual-agent-sdk#readme",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/simcoder"
},
"credits": {
"creator": "simcoder technologies a subsidiary of SCS Group",
"innovation": "Seamless Voice-Text Context Switching Technology",
"attribution": "If you use this SDK in your project, please include attribution to simcoder technologies and link to this repository."
}
}