@agentionai/agents 0.14.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +73 -13
- package/dist/agents/AgentConfig.d.ts +10 -0
- package/dist/agents/AgentEvent.d.ts +2 -0
- package/dist/agents/AgentEvent.js +2 -0
- package/dist/agents/anthropic/ClaudeAgent.d.ts +54 -0
- package/dist/agents/anthropic/ClaudeAgent.js +235 -27
- package/dist/agents/google/GeminiAgent.js +2 -1
- package/dist/agents/openai/OpenAiAgent.d.ts +15 -0
- package/dist/agents/openai/OpenAiAgent.js +150 -0
- package/dist/agents/openai-compatible/OpenAICompatibleAgent.d.ts +27 -0
- package/dist/agents/openai-compatible/OpenAICompatibleAgent.js +195 -0
- package/dist/history/History.d.ts +2 -2
- package/dist/history/History.js +3 -1
- package/dist/history/index.d.ts +2 -2
- package/dist/history/index.js +3 -1
- package/dist/history/transformers.js +20 -1
- package/dist/history/types.d.ts +20 -1
- package/dist/history/types.js +11 -0
- package/dist/index.d.ts +1 -1
- package/dist/ingestion/IngestionPipeline.js +1 -1
- package/dist/llamacpp.d.ts +1 -1
- package/dist/team/Team.js +1 -10
- package/dist/vectorstore/LanceDBVectorStore.js +0 -1
- package/package.json +4 -7
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentionai/agents",
|
|
3
3
|
"author": "Laurent Zuijdwijk",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "1.0.1",
|
|
5
5
|
"description": "Agent Library",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -87,8 +87,8 @@
|
|
|
87
87
|
"test": "jest",
|
|
88
88
|
"test:watch": "jest --watch",
|
|
89
89
|
"lint": "eslint 'lib/**/*.{js,ts}'",
|
|
90
|
-
"lint:fix": "eslint '
|
|
91
|
-
"format": "prettier --write '
|
|
90
|
+
"lint:fix": "eslint 'lib/**/*.{js,ts}' --fix",
|
|
91
|
+
"format": "prettier --write 'lib/**/*.{js,ts,json,md}'",
|
|
92
92
|
"prepare": "npm run build",
|
|
93
93
|
"example": "tsx",
|
|
94
94
|
"example:watch": "nodemon --watch examples --watch src --ext ts --exec 'ts-node --project tsconfig.esm.json' examples/index.ts",
|
|
@@ -102,7 +102,6 @@
|
|
|
102
102
|
"publish:all": "npm run publish:npm && npm run publish:github"
|
|
103
103
|
},
|
|
104
104
|
"overrides": {
|
|
105
|
-
"ajv": "^8.17.1",
|
|
106
105
|
"whatwg-url": "^14.0.0"
|
|
107
106
|
},
|
|
108
107
|
"devDependencies": {
|
|
@@ -116,12 +115,10 @@
|
|
|
116
115
|
"@mistralai/mistralai": "^1.13.0",
|
|
117
116
|
"@types/jest": "^29.5.0",
|
|
118
117
|
"@types/node": "^18.15.11",
|
|
119
|
-
"@typescript-eslint/eslint-plugin": "^5.57.1",
|
|
120
|
-
"@typescript-eslint/parser": "^5.57.1",
|
|
121
118
|
"apache-arrow": "^18.1.0",
|
|
122
119
|
"babel-jest": "^29.7.0",
|
|
123
120
|
"docdash": "^2.0.2",
|
|
124
|
-
"eslint": "^
|
|
121
|
+
"eslint": "^9.23.0",
|
|
125
122
|
"eslint-config-prettier": "^8.8.0",
|
|
126
123
|
"eslint-plugin-prettier": "^4.2.1",
|
|
127
124
|
"globals": "^16.0.0",
|