vellum 0.4.55 → 0.4.56
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/package.json +5 -4
- package/Dockerfile +0 -26
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vellum",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.56",
|
|
4
4
|
"description": "Install the full Vellum stack locally",
|
|
5
5
|
"bin": {
|
|
6
6
|
"vellum": "./bin/vellum.js",
|
|
@@ -14,9 +14,10 @@
|
|
|
14
14
|
"Dockerfile"
|
|
15
15
|
],
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@vellumai/assistant": "0.4.
|
|
18
|
-
"@vellumai/cli": "0.4.
|
|
19
|
-
"@vellumai/
|
|
17
|
+
"@vellumai/assistant": "0.4.56",
|
|
18
|
+
"@vellumai/cli": "0.4.56",
|
|
19
|
+
"@vellumai/credential-executor": "0.4.56",
|
|
20
|
+
"@vellumai/vellum-gateway": "0.4.56"
|
|
20
21
|
},
|
|
21
22
|
"devDependencies": {
|
|
22
23
|
"@types/bun": "^1.2.4"
|
package/Dockerfile
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
# Use debian as base image
|
|
2
|
-
FROM debian:trixie@sha256:3615a749858a1cba49b408fb49c37093db813321355a9ab7c1f9f4836341e9db
|
|
3
|
-
|
|
4
|
-
# Install system dependencies
|
|
5
|
-
RUN apt-get update && apt-get install -y \
|
|
6
|
-
ca-certificates \
|
|
7
|
-
curl \
|
|
8
|
-
g++ \
|
|
9
|
-
git \
|
|
10
|
-
make \
|
|
11
|
-
python3 \
|
|
12
|
-
sudo \
|
|
13
|
-
unzip \
|
|
14
|
-
&& rm -rf /var/lib/apt/lists/*
|
|
15
|
-
|
|
16
|
-
# Install bun
|
|
17
|
-
RUN curl -fsSL https://bun.sh/install | bash
|
|
18
|
-
ENV BUN_INSTALL="/root/.bun"
|
|
19
|
-
ENV PATH="$BUN_INSTALL/bin:$PATH"
|
|
20
|
-
|
|
21
|
-
# Install vellum globally (provides the `vellum` CLI on PATH)
|
|
22
|
-
RUN bun add -g vellum
|
|
23
|
-
|
|
24
|
-
USER root
|
|
25
|
-
|
|
26
|
-
CMD ["vellum", "hatch", "--keep-alive"]
|