@evident-ai/runner-cdk 3.5.0 → 3.5.1-dev.8bb8794
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 +6 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ Reusable AWS CDK constructs for running an [Evident](https://evident.run) agent
|
|
|
9
9
|
`desiredCount 0`, and an HMAC-authenticated waker Lambda scales it back up on the next
|
|
10
10
|
message. You pay for the time the agent is actually working.
|
|
11
11
|
- **`EvidentMicrovmConstruct`** — a per-session AWS Lambda MicroVM that boots on demand
|
|
12
|
-
and suspends between messages. Installing
|
|
12
|
+
and suspends between messages. Installing this package is all you
|
|
13
13
|
need: the image build context ships inside it (see [The MicroVM image](#the-microvm-image)
|
|
14
14
|
below), so there is no checkout of the source repository involved. See
|
|
15
15
|
[the AWS runner doc](https://evident.run/docs/aws-runner) for the full picture of both
|
|
@@ -76,8 +76,8 @@ agent.selfStopRoleArn;
|
|
|
76
76
|
agent.replicaPrefix;
|
|
77
77
|
```
|
|
78
78
|
|
|
79
|
-
For a complete working example, see
|
|
80
|
-
|
|
79
|
+
For a complete working example, see `GETTING-STARTED.md` (not published to npm); it is the
|
|
80
|
+
construct's own dogfooding consumer.
|
|
81
81
|
|
|
82
82
|
## Props
|
|
83
83
|
|
|
@@ -183,9 +183,9 @@ all of them, so never put a secret in this prop.
|
|
|
183
183
|
|
|
184
184
|
## Status / limitations
|
|
185
185
|
|
|
186
|
-
- **Published to npm** as `@evident-ai/runner-cdk` (MIT).
|
|
187
|
-
|
|
188
|
-
|
|
186
|
+
- **Published to npm** as `@evident-ai/runner-cdk` (MIT). `npm install
|
|
187
|
+
@evident-ai/runner-cdk` (or `pnpm add`/`yarn add`); no checkout of this repo is
|
|
188
|
+
required. It builds to a self-contained `dist/` (`pnpm --filter
|
|
189
189
|
@evident-ai/runner-cdk build`) with no `workspace:`/`@evident/*` runtime dependency.
|
|
190
190
|
Evident's own consumer still consumes it as a `workspace:*` dependency for dogfooding.
|
|
191
191
|
- **AWS/ECS-specific.** Non-AWS clouds are an open question on the epic, not a supported
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@evident-ai/runner-cdk",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.1-dev.8bb8794",
|
|
4
4
|
"description": "Reusable CDK constructs for an Evident agent runner: a single scale-to-zero Fargate runner (task + service + per-agent self-stop role + waker Lambda), or a per-session AWS Lambda MicroVM that boots on demand and suspends between messages. Instantiate once per agent from your own stack.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|