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 1d5555d commit 3fa0571Copy full SHA for 3fa0571
README.md
@@ -13,7 +13,15 @@ You can use AgentAPI:
13
14
## Quickstart
15
16
-1. Install `agentapi` by downloading the latest release binary from the [releases page](https://github.com/coder/agentapi/releases).
+1. Install `agentapi`:
17
+
18
+ ```bash
19
+ OS=$(uname -s | tr "[:upper:]" "[:lower:]");
20
+ ARCH=$(uname -m | sed "s/x86_64/amd64/;s/aarch64/arm64/");
21
+ curl -fsSL "https://github.com/coder/agentapi/releases/latest/download/agentapi-${OS}-${ARCH}" -o agentapi && chmod +x agentapi
22
+ ```
23
24
+ Alternatively, you can download the latest release binary from the [releases page](https://github.com/coder/agentapi/releases).
25
26
1. Verify the installation:
27
0 commit comments