We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd8323d commit 692e8f3Copy full SHA for 692e8f3
1 file changed
docs/storage/archil.mdx
@@ -22,7 +22,7 @@ Build a template with the `archil` CLI preinstalled. The Archil package depends
22
23
```ts JavaScript & TypeScript
24
const template = Template()
25
- .fromTemplate("code-interpreter-v1")
+ .fromBaseImage()
26
.aptInstall(["libfuse2", "ca-certificates"])
27
.runCmd("curl -fsSL https://archil.com/install | sh")
28
```
@@ -31,7 +31,7 @@ const template = Template()
31
```python Python
32
template = (
33
Template()
34
- .from_template("code-interpreter-v1")
+ .from_base_image()
35
.apt_install(["libfuse2", "ca-certificates"])
36
.run_cmd("curl -fsSL https://archil.com/install | sh")
37
)
0 commit comments