Skip to content

Commit 3cc19f9

Browse files
committed
refac: update packages and tools
1 parent 09faca8 commit 3cc19f9

File tree

11 files changed

+1105
-1109
lines changed

11 files changed

+1105
-1109
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,7 @@ tools.registerTool(
158158
```
159159
atoma-agents/
160160
├── apps/
161+
├── client/
161162
├── web/
162163
├── packages/
163164
├── sui-agent/
@@ -166,7 +167,8 @@ atoma-agents/
166167
├── agents/ # AI agent implementation
167168
├── config/ # Configuration files
168169
├── prompts/ # AI prompt templates
169-
├── tools/ # Tool registry
170+
├── protocols/ # Protocol implementation
171+
├── tests/ # Test files
170172
├── transactions/ # Transaction handling
171173
└── utils/ # Utility functions
172174
```

packages/sui-agent/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,15 +107,15 @@ curl -X POST http://localhost:2512/query \
107107
```bash
108108
curl -X POST http://localhost:2512/query \
109109
-H "Content-Type: application/json" \
110-
-d '{"prompt": "show me information for pool 0x123..."}'
110+
-d '{"prompt": "show me information for pool 0x123... on Cetus Protocol"}'
111111
```
112112

113113
### Get Top Pools
114114

115115
```bash
116116
curl -X POST http://localhost:2512/query \
117117
-H "Content-Type: application/json" \
118-
-d '{"prompt": "show me the top 5 pools by APR"}'
118+
-d '{"prompt": "show me the top 5 pools on Aftermath Finance by APR"}'
119119
```
120120

121121
### Deposit into Top Pools
@@ -124,7 +124,7 @@ curl -X POST http://localhost:2512/query \
124124
# Deposit into top APR pools
125125
curl -X POST http://localhost:2512/query \
126126
-H "Content-Type: application/json" \
127-
-d '{"prompt": "deposit 1 SUI into each of the top 5 pools by APR with 1% slippage from my wallet 0x123..."}'
127+
-d '{"prompt": "deposit 1 SUI into each of the top 5 pools on Aftermath Finance by APR with 1% slippage from my wallet 0x123..."}'
128128

129129
# Deposit into top TVL pools
130130
curl -X POST http://localhost:2512/query \

0 commit comments

Comments
 (0)