Skip to content

Commit 8c46f2c

Browse files
committed
Merge remote-tracking branch 'upstream/shaw/trust'
2 parents 462c56f + 321dde6 commit 8c46f2c

File tree

3 files changed

+82
-6
lines changed

3 files changed

+82
-6
lines changed

packages/client-telegram/src/messageManager.ts

+4-3
Original file line numberDiff line numberDiff line change
@@ -397,8 +397,7 @@ export class MessageManager {
397397

398398
// Decide whether to respond
399399
const shouldRespond = await this._shouldRespond(message, state);
400-
if (!shouldRespond) return;
401-
400+
if (shouldRespond) {
402401
// Generate response
403402
const context = composeContext({
404403
state,
@@ -463,7 +462,6 @@ export class MessageManager {
463462

464463
// Update state after response
465464
state = await this.runtime.updateRecentMessageState(state);
466-
await this.runtime.evaluate(memory, state);
467465

468466
// Handle any resulting actions
469467
await this.runtime.processActions(
@@ -472,6 +470,9 @@ export class MessageManager {
472470
state,
473471
callback
474472
);
473+
}
474+
475+
await this.runtime.evaluate(memory, state, shouldRespond);
475476
} catch (error) {
476477
console.error("❌ Error handling message:", error);
477478
console.error("Error sending message:", error);

packages/core/src/models.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const models: Models = {
3131
},
3232
endpoint: "https://api.anthropic.com/v1",
3333
model: {
34-
[ModelClass.SMALL]: "claude-3-5-sonnet-20241022",
34+
[ModelClass.SMALL]: "claude-3-5-haiku",
3535
[ModelClass.MEDIUM]: "claude-3-5-sonnet-20241022",
3636
[ModelClass.LARGE]: "claude-3-opus-20240229",
3737
},

packages/plugin-solana/src/evaluators/trust.ts

+77-2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ import {
1111
Evaluator,
1212
} from "@ai16z/eliza/src/types.ts";
1313
import { stringToUuid } from "@ai16z/eliza/src/uuid.ts";
14+
import { TrustScoreManager } from "../providers/trustScoreProvider.ts";
15+
import { TokenProvider } from "../providers/token.ts";
16+
import { TrustScoreDatabase } from "../adapters/trustScoreDatabase.ts";
1417

1518
const shouldProcessTemplate =
1619
`# Task: Decide if the recent messages should be processed for token recommendations.
@@ -135,21 +138,93 @@ async function handler(runtime: IAgentRuntime, message: Memory) {
135138
!rec.alreadyKnown &&
136139
(rec.ticker || rec.contractAddress) &&
137140
rec.recommender &&
141+
rec.conviction &&
138142
rec.recommender.trim() !== ""
139143
);
140144
})
141145

142146
for (const rec of filteredRecommendations) {
143-
console.log("Recommendation: ", rec);
147+
148+
// TODO: Check to make sure the contract address is valid, it's the right one, etc
149+
150+
if(!rec.contractAddress) {
151+
console.warn("Not implemented: try to resolve CA from ticker")
152+
continue;
153+
}
154+
155+
// create the token provider and trust score manager
156+
const tokenProvider = new TokenProvider(rec.contractAddress);
157+
const trustScoreDb = new TrustScoreDatabase(runtime.databaseAdapter.db);
158+
const trustScoreManager = new TrustScoreManager(tokenProvider, trustScoreDb);
159+
160+
// get actors from the database
161+
const participants = await runtime.databaseAdapter.getParticipantsForRoom(message.roomId)
162+
163+
// find the first user Id from a user with the username that we extracted
164+
const user = participants.find(async (actor) => {
165+
const user = await runtime.databaseAdapter.getAccountById(actor);
166+
return user.name.toLowerCase().trim() === rec.recommender.toLowerCase().trim();
167+
});
168+
169+
if(!user) {
170+
console.warn("Could not find user: ", rec.recommender)
171+
continue;
172+
}
173+
174+
const account = await runtime.databaseAdapter.getAccountById(user);
175+
const userId = account.id;
176+
144177
const recMemory = {
145-
userId: stringToUuid(rec.recommender),
178+
userId,
146179
agentId,
147180
content: { text: JSON.stringify(rec) },
148181
roomId,
149182
createdAt: Date.now(),
150183
};
151184

152185
await recommendationsManager.createMemory(recMemory, true);
186+
187+
// buy, dont buy, sell, dont sell
188+
189+
const buyAmounts = {
190+
none: 0,
191+
low: 10,
192+
medium: 40,
193+
high: 100
194+
}
195+
196+
let buyAmount = buyAmounts[rec.conviction.toLowerCase().trim()]
197+
if(!buyAmount) {
198+
// handle annoying cases
199+
// for now just put in 10 sol
200+
buyAmount = 10;
201+
}
202+
203+
// TODO: scale this with market cap probably?
204+
205+
206+
// TODO: is this is a buy, sell, dont buy, or dont sell?
207+
208+
switch(rec.type) {
209+
case "buy":
210+
// for now, lets just assume buy only, but we should implement
211+
await trustScoreManager.createTradePerformance(
212+
runtime,
213+
rec.contractAddress,
214+
userId,
215+
{
216+
buy_amount: rec.buyAmount,
217+
is_simulation: true,
218+
}
219+
);
220+
break;
221+
case "sell":
222+
case "dont_sell":
223+
case "dont_buy":
224+
console.warn("Not implemented")
225+
break;
226+
}
227+
153228
}
154229

155230
return filteredRecommendations;

0 commit comments

Comments
 (0)