From a2efd93853004410a513c61f8431c0e37f65d48c Mon Sep 17 00:00:00 2001 From: Jeremy Frank <37932802+jfrank-summit@users.noreply.github.com> Date: Thu, 16 Jan 2025 06:37:12 -0700 Subject: [PATCH 1/3] Update README.md - clarify necessary env variables for Auto Drive integration --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9e387676..300f79ae 100644 --- a/README.md +++ b/README.md @@ -224,8 +224,9 @@ To use this feature: autodrive: upload: true ``` -3. Provide your Taurus EVM wallet details and Agent Memory Contract Address in `config.yaml` -4. Provide encryption password in `config.yaml` (optional) +3. Provide your Taurus EVM wallet details (PRIVATE_KEY) and Agent Memory Contract Address (CONTRACT_ADDRESS) in .env` +4. Make sure your Taurus EVM wallet has funds. A faucet can be found at https://subspacefaucet.com/ +5. Provide encryption password in `.env` (optional) ## Workflows From bc4821035245bcdea149eb8579da95bcf48def82 Mon Sep 17 00:00:00 2001 From: Jeremy Frank <37932802+jfrank-summit@users.noreply.github.com> Date: Thu, 16 Jan 2025 10:45:47 -0700 Subject: [PATCH 2/3] Update README.md Co-authored-by: Marc-Aurele Besner <82244926+marc-aurele-besner@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 300f79ae..52e0e045 100644 --- a/README.md +++ b/README.md @@ -226,7 +226,7 @@ To use this feature: ``` 3. Provide your Taurus EVM wallet details (PRIVATE_KEY) and Agent Memory Contract Address (CONTRACT_ADDRESS) in .env` 4. Make sure your Taurus EVM wallet has funds. A faucet can be found at https://subspacefaucet.com/ -5. Provide encryption password in `.env` (optional) +5. Provide encryption password in `.env` (optional, leave empty to not encrypt the agent memories) ## Workflows From 4adf76aa9c348c0767241b697cc11f5c01dd1a5e Mon Sep 17 00:00:00 2001 From: Jeremy Frank Date: Thu, 16 Jan 2025 10:49:49 -0700 Subject: [PATCH 3/3] update env.sample with useful defaults --- .env.sample | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/.env.sample b/.env.sample index 18471ec4..32cd44aa 100644 --- a/.env.sample +++ b/.env.sample @@ -9,18 +9,15 @@ LLAMA_API_URL= # AutoDrive Configuration AUTO_DRIVE_API_KEY= -AUTO_DRIVE_ENCRYPTION_PASSWORD= +AUTO_DRIVE_ENCRYPTION_PASSWORD= #leave blank if encryption is not desired # Blockchain Configuration -RPC_URL= -CONTRACT_ADDRESS= +RPC_URL=https://auto-evm.taurus.autonomys.xyz/ws +CONTRACT_ADDRESS=0xc1afebe677badb71fc760e61479227e43b422e48 PRIVATE_KEY= -# SerpAPI Configuration -SERPAPI_API_KEY= - # Environment -NODE_ENV= +NODE_ENV=development # Agent Version -AGENT_VERSION= \ No newline at end of file +AGENT_VERSION=2.0.0 \ No newline at end of file