vellum 0.4.44 → 0.4.46

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/Dockerfile CHANGED
@@ -18,22 +18,8 @@ RUN curl -fsSL https://bun.sh/install | bash
18
18
  ENV BUN_INSTALL="/root/.bun"
19
19
  ENV PATH="$BUN_INSTALL/bin:$PATH"
20
20
 
21
- WORKDIR /app
22
-
23
- # Copy the vellum meta package manifest
24
- COPY node_modules/vellum/package.json ./package.json
25
-
26
- # Copy the pre-built @vellumai packages into node_modules
27
- COPY node_modules/@vellumai/assistant ./node_modules/@vellumai/assistant
28
- COPY node_modules/@vellumai/cli ./node_modules/@vellumai/cli
29
- COPY node_modules/@vellumai/vellum-gateway ./node_modules/@vellumai/vellum-gateway
30
-
31
- # Install remaining transitive dependencies
32
- RUN bun install
33
-
34
- # Create the vellum CLI launcher backed by the bundled CLI package
35
- RUN printf '#!/usr/bin/env sh\nexec bun run /app/node_modules/@vellumai/cli/src/index.ts "$@"\n' > /usr/local/bin/vellum && \
36
- chmod +x /usr/local/bin/vellum
21
+ # Install vellum globally (provides the `vellum` CLI on PATH)
22
+ RUN bun add -g vellum
37
23
 
38
24
  USER root
39
25
 
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env bun
2
+ import("@vellumai/assistant");
package/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "vellum",
3
- "version": "0.4.44",
3
+ "version": "0.4.46",
4
4
  "description": "Install the full Vellum stack locally",
5
5
  "bin": {
6
- "vellum": "./bin/vellum.js"
6
+ "vellum": "./bin/vellum.js",
7
+ "assistant": "./bin/assistant.js"
7
8
  },
8
9
  "scripts": {
9
10
  "test": "bun test"
@@ -13,9 +14,9 @@
13
14
  "Dockerfile"
14
15
  ],
15
16
  "dependencies": {
16
- "@vellumai/assistant": "0.4.44",
17
- "@vellumai/cli": "0.4.44",
18
- "@vellumai/vellum-gateway": "0.4.44"
17
+ "@vellumai/assistant": "0.4.46",
18
+ "@vellumai/cli": "0.4.46",
19
+ "@vellumai/vellum-gateway": "0.4.46"
19
20
  },
20
21
  "devDependencies": {
21
22
  "@types/bun": "^1.2.4"