Skip to content
Merged
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
6 changes: 3 additions & 3 deletions typescript/agentkit/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ npm install @coinbase/agentkit
```typescript
const agentKit = await AgentKit.from({
cdpApiKeyId: "CDP API KEY NAME",
cdpApiKeyPrivate: "CDP API KEY SECRET",
cdpApiKeySecret: "CDP API KEY SECRET",
});
```

Expand All @@ -77,7 +77,7 @@ If no wallet or action provider are specified, the agent will use the `CdpWallet
```typescript
const agentKit = await AgentKit.from({
cdpApiKeyId: "CDP API KEY NAME",
cdpApiKeyPrivate: "CDP API KEY SECRET",
cdpApiKeySecret: "CDP API KEY SECRET",
});
```

Expand Down Expand Up @@ -542,7 +542,7 @@ This gives your agent access to the actions defined in the action provider.
```typescript
const agentKit = new AgentKit({
cdpApiKeyId: "CDP API KEY NAME",
cdpApiKeyPrivate: "CDP API KEY SECRET",
cdpApiKeySecret: "CDP API KEY SECRET",
actionProviders: [myActionProvider()],
});
```
Expand Down
Loading