Skip to content

Commit 0a4e2e4

Browse files
committed
update postgres memory
1 parent c3d019f commit 0a4e2e4

File tree

3 files changed

+76
-27
lines changed

3 files changed

+76
-27
lines changed

core/src/actions/cashtags.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -151,9 +151,9 @@ export const cashtags: Action = {
151151
similes: ["FIND_TOKEN", "SEARCH_TOKEN", "GET_TOKEN", "FIND_PAIR"],
152152
description:
153153
"Searches for the best matching token pair based on age, liquidity, volume, and transaction count",
154-
// validate: async (runtime: IAgentRuntime, message: Memory, state: State) => {
155-
// return !!runtime.getSetting("DEXSCREENER_API_URL");
156-
// },
154+
validate: async (runtime: IAgentRuntime, message: Memory, state: State) => {
155+
return true
156+
},
157157
handler: async (
158158
runtime: IAgentRuntime,
159159
message: Memory,

core/src/adapters/postgres.ts

+22-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ import {
1111
Participant,
1212
} from "../core/types.ts";
1313
import { DatabaseAdapter } from "../core/database.ts";
14+
import { zeroUuid } from "../test_resources/constants.ts";
15+
import { embeddingZeroVector } from "../core/memory.ts";
1416
const { Pool } = pg;
1517

1618
export class PostgresDatabaseAdapter extends DatabaseAdapter {
@@ -265,6 +267,8 @@ export class PostgresDatabaseAdapter extends DatabaseAdapter {
265267
}
266268
);
267269
isUnique = similarMemories.length === 0;
270+
}else{
271+
memory.embedding = embeddingZeroVector
268272
}
269273

270274
await client.query(
@@ -287,16 +291,24 @@ export class PostgresDatabaseAdapter extends DatabaseAdapter {
287291
client.release();
288292
}
289293
}
290-
294+
291295
async searchMemories(params: {
292296
tableName: string;
293297
roomId: UUID;
298+
agentId?: UUID;
294299
embedding: number[];
295300
match_threshold: number;
296301
match_count: number;
297302
unique: boolean;
298303
}): Promise<Memory[]> {
299304
const client = await this.pool.connect();
305+
306+
const queryParams = [
307+
new Float32Array(params.embedding), // Ensure embedding is Float32Array
308+
params.tableName,
309+
params.roomId,
310+
params.match_count,
311+
];
300312
try {
301313
let sql = `
302314
SELECT *,
@@ -309,10 +321,17 @@ export class PostgresDatabaseAdapter extends DatabaseAdapter {
309321
sql += ` AND "unique" = true`;
310322
}
311323

324+
325+
if (params.agentId) {
326+
sql += " AND agentId = ?";
327+
queryParams.push(params.agentId);
328+
}
329+
312330
sql += ` AND 1 - (embedding <-> $3) >= $4
313331
ORDER BY embedding <-> $3
314332
LIMIT $5`;
315333

334+
316335
const { rows } = await client.query(sql, [
317336
params.tableName,
318337
params.roomId,
@@ -331,6 +350,7 @@ export class PostgresDatabaseAdapter extends DatabaseAdapter {
331350
}
332351
}
333352

353+
334354
async getMemories(params: {
335355
roomId: UUID;
336356
count?: number;
@@ -368,6 +388,7 @@ export class PostgresDatabaseAdapter extends DatabaseAdapter {
368388
if (params.agentId) {
369389
sql += ` AND "agentId" = $3`;
370390
values.push(params.agentId);
391+
paramCount++;
371392
}
372393

373394
sql += ' ORDER BY "createdAt" DESC';

core/src/adapters/sqlite.ts

+51-23
Original file line numberDiff line numberDiff line change
@@ -242,41 +242,69 @@ export class SqliteDatabaseAdapter extends DatabaseAdapter {
242242
match_count: number;
243243
unique: boolean;
244244
}): Promise<Memory[]> {
245-
const queryParams = [
246-
new Float32Array(params.embedding), // Ensure embedding is Float32Array
247-
params.tableName,
248-
params.roomId,
249-
params.match_count,
245+
// Build the query parameters array
246+
const queryParams: any[] = [
247+
params.embedding, // $1: embedding vector
248+
params.tableName, // $2: table name
249+
params.roomId, // $3: room ID
250+
params.match_count, // $4: limit count
250251
];
251252

253+
console.log("searchMemories", params);
254+
255+
// Start building the SQL query
252256
let sql = `
253-
SELECT *, vec_distance_L2(embedding, ?) AS similarity
254-
FROM memories
255-
WHERE type = ?`;
257+
SELECT *,
258+
embedding <-> $1 as similarity
259+
FROM memories
260+
WHERE type = $2
261+
AND room_id = $3`;
262+
263+
let paramCount = 3; // Track the current parameter count
256264

257265
if (params.unique) {
258-
sql += " AND `unique` = 1";
266+
paramCount++;
267+
sql += ` AND unique = true`;
259268
}
260269

261270
if (params.agentId) {
262-
sql += " AND agentId = ?";
271+
paramCount++;
272+
sql += ` AND agent_id = $${paramCount}`;
263273
queryParams.push(params.agentId);
264274
}
265275

266-
sql += ` ORDER BY similarity ASC LIMIT ?`; // ASC for lower distance
267-
// Updated queryParams order matches the placeholders
276+
// Add similarity threshold if specified
277+
if (params.match_threshold) {
278+
paramCount++;
279+
sql += ` AND embedding <-> $1 < $${paramCount}`;
280+
queryParams.push(params.match_threshold);
281+
}
268282

269-
const memories = this.db.prepare(sql).all(...queryParams) as (Memory & {
270-
similarity: number;
271-
})[];
272-
return memories.map((memory) => ({
273-
...memory,
274-
createdAt:
275-
typeof memory.createdAt === "string"
276-
? Date.parse(memory.createdAt as string)
277-
: memory.createdAt,
278-
content: JSON.parse(memory.content as unknown as string),
279-
}));
283+
// Order by similarity and limit results
284+
sql += `
285+
ORDER BY similarity ASC
286+
LIMIT $4`;
287+
288+
try {
289+
// Use the pg pool or client to execute the query
290+
const result = await this.db.query(sql, queryParams);
291+
292+
// Process and return the results
293+
return result.rows.map((row) => ({
294+
...row,
295+
createdAt:
296+
typeof row.created_at === "string"
297+
? Date.parse(row.created_at)
298+
: row.created_at,
299+
content:
300+
typeof row.content === "string"
301+
? JSON.parse(row.content)
302+
: row.content,
303+
}));
304+
} catch (error) {
305+
console.error("Error executing vector similarity search:", error);
306+
throw error;
307+
}
280308
}
281309

282310
async searchMemoriesByEmbedding(

0 commit comments

Comments
 (0)