@evident-ai/runner-cdk 3.5.2-dev.1c27282 → 3.5.2-dev.8d3aa06
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
CHANGED
|
@@ -76,8 +76,8 @@ agent.selfStopRoleArn;
|
|
|
76
76
|
agent.replicaPrefix;
|
|
77
77
|
```
|
|
78
78
|
|
|
79
|
-
For
|
|
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
|
|
|
@@ -162,8 +162,7 @@ new EvidentMicrovmConstruct(this, 'Runner', {
|
|
|
162
162
|
Pass `overlayDir` to add deployment-specific build steps to the staged image. The
|
|
163
163
|
directory provides `setup-root` for root-owned installs and `setup-workspace` for
|
|
164
164
|
dependency installation and workspace build warm-up. See the [MicroVM image
|
|
165
|
-
README](
|
|
166
|
-
for the full overlay contract.
|
|
165
|
+
README](../../runner/docker-images/microvm/README.md) for the full overlay contract.
|
|
167
166
|
|
|
168
167
|
The image bakes your repository checked out but not installed and makes no assumptions about
|
|
169
168
|
its package manager. To speed up first boot, install dependencies from your overlay's
|
|
@@ -35,7 +35,7 @@ export interface StageMicrovmImageContextOptions {
|
|
|
35
35
|
*
|
|
36
36
|
* The Dockerfile, hook server and phase hooks come from this package's
|
|
37
37
|
* published `dist/`, so a consumer needs no checkout of the source repository and no
|
|
38
|
-
* copy of those files. A caller may supply an overlay; the default is
|
|
38
|
+
* copy of those files (#1528). A caller may supply an overlay; the default is
|
|
39
39
|
* deterministic no-op scripts. `repositoryPath` is the only required caller
|
|
40
40
|
* input.
|
|
41
41
|
*/
|
|
@@ -127,7 +127,7 @@ function stageScriptDirectory(source, destination) {
|
|
|
127
127
|
*
|
|
128
128
|
* The Dockerfile, hook server and phase hooks come from this package's
|
|
129
129
|
* published `dist/`, so a consumer needs no checkout of the source repository and no
|
|
130
|
-
* copy of those files. A caller may supply an overlay; the default is
|
|
130
|
+
* copy of those files (#1528). A caller may supply an overlay; the default is
|
|
131
131
|
* deterministic no-op scripts. `repositoryPath` is the only required caller
|
|
132
132
|
* input.
|
|
133
133
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@evident-ai/runner-cdk",
|
|
3
|
-
"version": "3.5.2-dev.
|
|
3
|
+
"version": "3.5.2-dev.8d3aa06",
|
|
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",
|