Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md - clarify necessary env variables for Auto Drive integration #146

Merged
merged 3 commits into from
Jan 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 5 additions & 8 deletions .env.sample
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,15 @@ LLAMA_API_URL=<llama_api_url>

# AutoDrive Configuration
AUTO_DRIVE_API_KEY=<auto_drive_api_key>
AUTO_DRIVE_ENCRYPTION_PASSWORD=<auto_drive_encryption_password>
AUTO_DRIVE_ENCRYPTION_PASSWORD= #leave blank if encryption is not desired

# Blockchain Configuration
RPC_URL=<rpc_url>
CONTRACT_ADDRESS=<contract_address>
RPC_URL=https://auto-evm.taurus.autonomys.xyz/ws
CONTRACT_ADDRESS=0xc1afebe677badb71fc760e61479227e43b422e48
PRIVATE_KEY=<private_key>

# SerpAPI Configuration
SERPAPI_API_KEY=<serpapi_api_key>

# Environment
NODE_ENV=<node_env>
NODE_ENV=development

# Agent Version
AGENT_VERSION=<agent_version>
AGENT_VERSION=2.0.0
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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, leave empty to not encrypt the agent memories)

## Workflows

Expand Down
Loading