-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 854 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 854 Bytes
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
{
"name": "@aiswarm/conductor",
"version": "0.1.9",
"description": "Main application to run the AI Swarm. Uses bundles the web-ui, cli, and core drivers in a simple to use package.",
"keywords": [
"ai",
"swarm",
"chat",
"messaging",
"groups",
"communication",
"agent",
"gpt",
"organization"
],
"main": "@aiswatm/ui-cli",
"type": "module",
"bin": {
"conductor": "./bin"
},
"scripts": {
"start": "node -e 'import(process.cwd() + \"/node_modules/@aiswarm/ui-cli/index.js\")'",
"link": "npm link ../ui-web ../api-graphql ../ui-cli ../driver-openai"
},
"author": "Ravi Gairola <mallox@pyxzl.net>",
"license": "MIT",
"dependencies": {
"@aiswarm/ui-cli": "^0.1.0",
"@aiswarm/api-graphql": "^0.1.0",
"@aiswarm/ui-web": "^0.1.0",
"@aiswarm/driver-openai": "^0.1.0"
}
}