From 78de4331c7ad1636e937f81bca8537cc8540a64f Mon Sep 17 00:00:00 2001 From: Christopher Gerber Date: Mon, 4 Nov 2024 12:00:25 -0800 Subject: [PATCH 1/5] adding cargo req to readme's --- cdp-agentkit-core/README.md | 3 +++ cdp-langchain/README.md | 3 +++ 2 files changed, 6 insertions(+) diff --git a/cdp-agentkit-core/README.md b/cdp-agentkit-core/README.md index d738670f..09694dd7 100644 --- a/cdp-agentkit-core/README.md +++ b/cdp-agentkit-core/README.md @@ -2,6 +2,9 @@ Core primitives and framework agnostic tools that are meant to be composable and used via Agentkit framework extensions. ## Developing +- cdp-sdk has a dependency on cargo, please install rust and add cargo to your path + - [Rust Installation Instructions] https://doc.rust-lang.org/cargo/getting-started/installation.html + - export PATH="$HOME/.cargo/bin:$PATH" - Agentkit uses `poetry` for package management and tooling - [Poetry Installation Instructions](https://python-poetry.org/docs/#installation) - Run `poetry install` to install `cdp-agentkit-core` dependencies diff --git a/cdp-langchain/README.md b/cdp-langchain/README.md index e032d136..246690f3 100644 --- a/cdp-langchain/README.md +++ b/cdp-langchain/README.md @@ -1,6 +1,9 @@ # CDP Agentkit Extension - Langchain Toolkit ## Developing +- cdp-sdk has a dependency on cargo, please install rust and add cargo to your path + - [Rust Installation Instructions] https://doc.rust-lang.org/cargo/getting-started/installation.html + - export PATH="$HOME/.cargo/bin:$PATH" - Agentkit uses `poetry` for package management and tooling - [Poetry Installation Instructions](https://python-poetry.org/docs/#installation) - Run `poetry install` to install `cdp-langchain` dependencies From 26f33da2259e9b18b09e9f59b3e3a774e366f089 Mon Sep 17 00:00:00 2001 From: Christopher Gerber Date: Mon, 4 Nov 2024 12:04:12 -0800 Subject: [PATCH 2/5] markdown fix --- cdp-agentkit-core/README.md | 2 +- cdp-langchain/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cdp-agentkit-core/README.md b/cdp-agentkit-core/README.md index 09694dd7..1654de42 100644 --- a/cdp-agentkit-core/README.md +++ b/cdp-agentkit-core/README.md @@ -3,7 +3,7 @@ Core primitives and framework agnostic tools that are meant to be composable and ## Developing - cdp-sdk has a dependency on cargo, please install rust and add cargo to your path - - [Rust Installation Instructions] https://doc.rust-lang.org/cargo/getting-started/installation.html + - [Rust Installation Instructions](https://doc.rust-lang.org/cargo/getting-started/installation.html) - export PATH="$HOME/.cargo/bin:$PATH" - Agentkit uses `poetry` for package management and tooling - [Poetry Installation Instructions](https://python-poetry.org/docs/#installation) diff --git a/cdp-langchain/README.md b/cdp-langchain/README.md index 246690f3..1afdf9a3 100644 --- a/cdp-langchain/README.md +++ b/cdp-langchain/README.md @@ -2,7 +2,7 @@ ## Developing - cdp-sdk has a dependency on cargo, please install rust and add cargo to your path - - [Rust Installation Instructions] https://doc.rust-lang.org/cargo/getting-started/installation.html + - [Rust Installation Instructions](https://doc.rust-lang.org/cargo/getting-started/installation.html) - export PATH="$HOME/.cargo/bin:$PATH" - Agentkit uses `poetry` for package management and tooling - [Poetry Installation Instructions](https://python-poetry.org/docs/#installation) From faf31050ec9fa5c1e40da90a28e3bc8a0966f6a0 Mon Sep 17 00:00:00 2001 From: Chris Gerber Date: Mon, 4 Nov 2024 12:25:11 -0800 Subject: [PATCH 3/5] Update cdp-agentkit-core/README.md Co-authored-by: John Peterson <98187317+John-peterson-coinbase@users.noreply.github.com> --- cdp-agentkit-core/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cdp-agentkit-core/README.md b/cdp-agentkit-core/README.md index 1654de42..ba7032ea 100644 --- a/cdp-agentkit-core/README.md +++ b/cdp-agentkit-core/README.md @@ -2,7 +2,7 @@ Core primitives and framework agnostic tools that are meant to be composable and used via Agentkit framework extensions. ## Developing -- cdp-sdk has a dependency on cargo, please install rust and add cargo to your path +- `cdp-sdk` has a dependency on `cargo`, please install rust and add `cargo` to your path - [Rust Installation Instructions](https://doc.rust-lang.org/cargo/getting-started/installation.html) - export PATH="$HOME/.cargo/bin:$PATH" - Agentkit uses `poetry` for package management and tooling From 55eac5b5bdfcf30d33e7dd514d761035da938913 Mon Sep 17 00:00:00 2001 From: Chris Gerber Date: Mon, 4 Nov 2024 12:25:20 -0800 Subject: [PATCH 4/5] Update cdp-agentkit-core/README.md Co-authored-by: John Peterson <98187317+John-peterson-coinbase@users.noreply.github.com> --- cdp-agentkit-core/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cdp-agentkit-core/README.md b/cdp-agentkit-core/README.md index ba7032ea..ecc73dfb 100644 --- a/cdp-agentkit-core/README.md +++ b/cdp-agentkit-core/README.md @@ -4,7 +4,7 @@ Core primitives and framework agnostic tools that are meant to be composable and ## Developing - `cdp-sdk` has a dependency on `cargo`, please install rust and add `cargo` to your path - [Rust Installation Instructions](https://doc.rust-lang.org/cargo/getting-started/installation.html) - - export PATH="$HOME/.cargo/bin:$PATH" + - `export PATH="$HOME/.cargo/bin:$PATH"` - Agentkit uses `poetry` for package management and tooling - [Poetry Installation Instructions](https://python-poetry.org/docs/#installation) - Run `poetry install` to install `cdp-agentkit-core` dependencies From a2c09d8d5586e98f921cdd92d983e244bf01b2d0 Mon Sep 17 00:00:00 2001 From: Chris Gerber Date: Mon, 4 Nov 2024 12:25:29 -0800 Subject: [PATCH 5/5] Update cdp-langchain/README.md Co-authored-by: John Peterson <98187317+John-peterson-coinbase@users.noreply.github.com> --- cdp-langchain/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cdp-langchain/README.md b/cdp-langchain/README.md index 1afdf9a3..9449113e 100644 --- a/cdp-langchain/README.md +++ b/cdp-langchain/README.md @@ -1,9 +1,9 @@ # CDP Agentkit Extension - Langchain Toolkit ## Developing -- cdp-sdk has a dependency on cargo, please install rust and add cargo to your path +- `cdp-sdk` has a dependency on `cargo`, please install rust and add `cargo` to your path - [Rust Installation Instructions](https://doc.rust-lang.org/cargo/getting-started/installation.html) - - export PATH="$HOME/.cargo/bin:$PATH" + - `export PATH="$HOME/.cargo/bin:$PATH"` - Agentkit uses `poetry` for package management and tooling - [Poetry Installation Instructions](https://python-poetry.org/docs/#installation) - Run `poetry install` to install `cdp-langchain` dependencies