Skip to content

Commit da9d7be

Browse files
committed
cleanup
1 parent 798b6be commit da9d7be

File tree

4 files changed

+411
-11
lines changed

4 files changed

+411
-11
lines changed

integrations/coinbase-agentkit/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# coinbase-agentkit
22

3-
A DeFi payment agent built using CDP AgentKit that operates over the XMTP messaging protocol.
3+
A DeFi agent built using CDP AgentKit that operates over the XMTP messaging protocol.
44

55
## Features
66

@@ -17,7 +17,7 @@ A DeFi payment agent built using CDP AgentKit that operates over the XMTP messag
1717

1818
## Quick Start Guide
1919

20-
Follow these steps to get your payment agent up and running quickly:
20+
Follow these steps to get your agent up and running quickly:
2121

2222
1. **Clone the repository**:
2323

@@ -75,7 +75,7 @@ Follow these steps to get your payment agent up and running quickly:
7575
```
7676
Send a message on http://xmtp.chat/dm/YOUR_AGENT_ADDRESS?env=dev
7777
```
78-
Open this URL in your browser to start chatting with your payment agent!
78+
Open this URL in your browser to start chatting with your agent!
7979

8080
## Usage Examples
8181

@@ -89,7 +89,7 @@ Once the agent is running, you can interact with it using natural language comma
8989

9090
## How It Works
9191

92-
This payment agent combines several technologies:
92+
This agent combines several technologies:
9393

9494
1. **XMTP Protocol**: For decentralized messaging and chat interface
9595
2. **Coinbase AgentKit**: AI agent framework

integrations/coinbase-agentkit/src/cdp.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ export async function initializeAgent(
9999
// Store buffered conversation history in memory
100100
const memory = new MemorySaver();
101101
const agentConfig: AgentConfig = {
102-
configurable: { thread_id: `Payment Agent for ${userId}` },
102+
configurable: { thread_id: `Agent for ${userId}` },
103103
};
104104

105105
// Create React Agent using the LLM and CDP AgentKit tools
@@ -108,7 +108,7 @@ export async function initializeAgent(
108108
tools,
109109
checkpointSaver: memory,
110110
messageModifier: `
111-
You are a DeFi Payment Agent that assists users with sending payments to any wallet address using natural language instructions.
111+
You are a DeFi Agent that assists users with sending payments to any wallet address using natural language instructions.
112112
113113
When a user asks you to make a payment:
114114
1. Notify users of successful transactions with relevant details.

integrations/coinbase-agentkit/src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ async function handleMessage(message: any, conversation: any) {
7373
}
7474

7575
async function main(): Promise<void> {
76-
console.log("Starting Payment Agent...");
76+
console.log("Starting age ...");
7777

7878
// Validate environment variables
7979
validateEnvironment();

0 commit comments

Comments
 (0)