Skip to content

Commit 75a6a97

Browse files
authored
Merge pull request #1 from pinecone-io/add-install-script
direct install method with bash script
2 parents d62a523 + 91a118d commit 75a6a97

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ Download the latest release and run the installation command for your assistant:
1212

1313
**Linux/macOS:**
1414

15+
```bash
16+
curl -sSL https://docs.pinecone.io/install-agent-reference | sh
17+
```
18+
19+
Alternatively, run the commands directly:
20+
1521
```bash
1622
curl -L -o agents.zip https://github.com/pinecone-io/pinecone-agents-ref/releases/latest/download/agents.zip
1723
unzip agents.zip && rm agents.zip

install.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/bash
2+
set -e
3+
curl -L -o agents.zip https://github.com/pinecone-io/pinecone-agents-ref/releases/latest/download/agents.zip
4+
unzip agents.zip && rm agents.zip
5+
touch AGENTS.md && cat AGENTS-pinecone-snippet.md >> AGENTS.md && rm AGENTS-pinecone-snippet.md

0 commit comments

Comments
 (0)