-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.52 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@mintplex-labs/openai-assistant-swarm",
"version": "0.1.2",
"description": "A simple library the extends the OpenAI NodeJS SDK so you can automatically delegate any task to any assistants you create in OpenAi through one united interface and manager. Now you can delegate work to a swarm of assistant all specialized with specific tasks you define.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"readme": "./README.md",
"bugs": {
"url": "https://github.com/Mintplex-Labs/openai-assistant-swarm/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Mintplex-Labs/openai-assistant-swarm"
},
"files": [
"dist",
"src",
"examples"
],
"scripts": {
"build": "yarn lint && tsup",
"lint": "yarn prettier --write ./src",
"dev:link": "npm link && cd examples && npm link openai-assistant-swarm && cd ..",
"dev:test": "rm -rf dist && yarn build && yarn dev:link && node examples/index.mjs"
},
"keywords": [
"openai",
"gpts",
"assistant",
"manager",
"assistant",
"manager",
"ai agents",
"ai swarm",
"openai assistants",
"ai agent",
"agent manager",
"gpt-3.5 agent",
"autogpt",
"autogen",
"mintplex labs inc",
"AGI",
"agi"
],
"author": "Mintplex Labs Inc",
"license": "MIT",
"devDependencies": {
"dotenv": "^16.3.1",
"openai": "^4.18.0",
"prettier": "^3.1.0",
"ts-node": "^10.9.1",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
}
}