Skip to content

Commit 654f2ce

Browse files
authored
Updated CLI binary links to v0.1.3-narwhal release and OpenAI env var fixes (#137)
1 parent 126cb3a commit 654f2ce

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ Download the latest CLI binary for your platform from our releases page.
4848

4949
```shell
5050
# macOS
51-
curl -L https://github.com/ezodude/orra/releases/download/v0.1.2-narwhal/orra-macos -o /usr/local/bin/orra
51+
curl -L https://github.com/ezodude/orra/releases/download/v0.1.3-narwhal/orra-macos -o /usr/local/bin/orra
5252
chmod +x /usr/local/bin/orra
5353

5454
# Linux
55-
curl -L https://github.com/ezodude/orra/releases/download/v0.1.2-narwhal/orra-linux -o /usr/local/bin/orra
55+
curl -L https://github.com/ezodude/orra/releases/download/v0.1.3-narwhal/orra-linux -o /usr/local/bin/orra
5656
chmod +x /usr/local/bin/orra
5757

5858
# Verify installation

controlplane/_env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
OPEN_API_KEY=xxx
1+
OPENAI_API_KEY=xxx

examples/echo-js/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ docker compose up
4747
2. Setup your Orra project:
4848
```bash
4949
# Install Orra CLI
50-
curl -L https://github.com/ezodude/orra/releases/download/v0.1.2-narwhal/orra-darwin-arm64 -o /usr/local/bin/orra
50+
curl -L https://github.com/ezodude/orra/releases/download/v0.1.3-narwhal/orra-darwin-arm64 -o /usr/local/bin/orra
5151
chmod +x /usr/local/bin/orra
5252

5353
# Create project, add a webhook and API key

examples/echo-python/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ docker compose up
4040
2. Setup your Orra project:
4141
```bash
4242
# Install Orra CLI
43-
curl -L https://github.com/ezodude/orra/releases/download/v0.1.2-narwhal/orra-darwin-arm64 -o /usr/local/bin/orra
43+
curl -L https://github.com/ezodude/orra/releases/download/v0.1.3-narwhal/orra-darwin-arm64 -o /usr/local/bin/orra
4444
chmod +x /usr/local/bin/orra
4545

4646
# Create project, add a webhook and API key

examples/ecommerce-agent-app/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ docker compose up
4040
2. Setup your Orra project:
4141
```bash
4242
# Install Orra CLI
43-
curl -L https://github.com/ezodude/orra/releases/download/v0.1.2-narwhal/orra-darwin-arm64 -o /usr/local/bin/orra
43+
curl -L https://github.com/ezodude/orra/releases/download/v0.1.3-narwhal/orra-darwin-arm64 -o /usr/local/bin/orra
4444
chmod +x /usr/local/bin/orra
4545

4646
# Create project and configure a webhook

sdks-conformance/test-harness/docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ services:
88
target: final
99
environment:
1010
- PORT=8005
11-
- OPEN_API_KEY=${OPEN_API_KEY}
11+
- OPENAI_API_KEY=${OPENAI_API_KEY}
1212
healthcheck:
1313
test: ["CMD", "curl", "-f", "http://localhost:8005/health"]
1414
interval: 5s

0 commit comments

Comments
 (0)