@inkeep/create-agents 0.1.7 → 0.1.8
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 +14 -14
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -6,13 +6,13 @@ Create an Inkeep Agent Framework directory with multi-service architecture.
|
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
8
|
# Interactive mode
|
|
9
|
-
|
|
9
|
+
pnpm create-agents
|
|
10
10
|
|
|
11
11
|
# With directory name
|
|
12
|
-
|
|
12
|
+
pnpm create-agents my-agent-directory
|
|
13
13
|
|
|
14
14
|
# With options
|
|
15
|
-
npx
|
|
15
|
+
npx create-agents my-agent-directory --tenant-id default --project-id my-project --openai-key sk-... --anthropic-key sk-ant-...
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
## Usage
|
|
@@ -22,7 +22,7 @@ npx @inkeep/create-agents my-agent-directory --tenant-id default --project-id my
|
|
|
22
22
|
### Interactive Mode
|
|
23
23
|
Run without arguments for an interactive setup experience:
|
|
24
24
|
```bash
|
|
25
|
-
|
|
25
|
+
pnpm create-agents
|
|
26
26
|
```
|
|
27
27
|
|
|
28
28
|
You'll be prompted for:
|
|
@@ -35,7 +35,7 @@ You'll be prompted for:
|
|
|
35
35
|
### Direct Mode
|
|
36
36
|
Specify options directly:
|
|
37
37
|
```bash
|
|
38
|
-
|
|
38
|
+
pnpm create-agents my-agent-directory --tenant-id my-tenant --project-id my-project-id --anthropic-key sk-ant-... --openai-key sk-...
|
|
39
39
|
```
|
|
40
40
|
|
|
41
41
|
## Options
|
|
@@ -91,23 +91,23 @@ my-agent-directory/
|
|
|
91
91
|
2. **Start the services:**
|
|
92
92
|
```bash
|
|
93
93
|
# Start both Manage API and Run API
|
|
94
|
-
|
|
94
|
+
pnpm dev
|
|
95
95
|
```
|
|
96
96
|
|
|
97
97
|
3. **In a new terminal, start the Manage UI:**
|
|
98
98
|
```bash
|
|
99
|
-
|
|
99
|
+
inkeep dev
|
|
100
100
|
```
|
|
101
101
|
|
|
102
102
|
4. **Deploy your first agent graph:**
|
|
103
103
|
```bash
|
|
104
104
|
cd src/<project-id>/
|
|
105
|
-
|
|
105
|
+
pnpm inkeep push hello.graph.ts
|
|
106
106
|
```
|
|
107
107
|
|
|
108
108
|
5. **Test your agents:**
|
|
109
109
|
```bash
|
|
110
|
-
|
|
110
|
+
pnpm inkeep chat
|
|
111
111
|
```
|
|
112
112
|
|
|
113
113
|
## Available Services
|
|
@@ -120,11 +120,11 @@ After setup, you'll have access to:
|
|
|
120
120
|
|
|
121
121
|
## Commands Available in Your Directory
|
|
122
122
|
|
|
123
|
-
- `
|
|
124
|
-
- `
|
|
125
|
-
- `
|
|
126
|
-
- `
|
|
127
|
-
- `
|
|
123
|
+
- `pnpm dev` - Start both API services with hot reload
|
|
124
|
+
- `pnpm db:push` - Apply database schema changes
|
|
125
|
+
- `inkeep dev` - Start the Manage UI
|
|
126
|
+
- `inkeep push <graph-file>` - Deploy agent configurations
|
|
127
|
+
- `inkeep chat` - Interactive chat with your agents
|
|
128
128
|
|
|
129
129
|
## Environment Variables
|
|
130
130
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inkeep/create-agents",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"description": "Create an Inkeep Agent Framework project",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"commander": "^12.0.0",
|
|
32
|
-
"@inkeep/agents-cli": "^0.1.
|
|
32
|
+
"@inkeep/agents-cli": "^0.1.8"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@types/node": "^20.12.0",
|