Spaces:
Sleeping
Sleeping
File size: 14,973 Bytes
90cbf22 df2ef4f 90cbf22 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 |
import { v } from 'convex/values';
import { ActionCtx, DatabaseReader, internalMutation, internalQuery } from '../_generated/server';
import { Doc, Id } from '../_generated/dataModel';
import { internal } from '../_generated/api';
import { LLMMessage, chatCompletion, fetchEmbedding } from '../util/llm';
import { asyncMap } from '../util/asyncMap';
import { GameId, agentId, conversationId, playerId } from '../aiTown/ids';
import { SerializedPlayer } from '../aiTown/player';
import { memoryFields } from './schema';
// How long to wait before updating a memory's last access time.
export const MEMORY_ACCESS_THROTTLE = 300_000; // In ms
// We fetch 10x the number of memories by relevance, to have more candidates
// for sorting by relevance + recency + importance.
const MEMORY_OVERFETCH = 10;
const selfInternal = internal.agent.memory;
export type Memory = Doc<'memories'>;
export type MemoryType = Memory['data']['type'];
export type MemoryOfType<T extends MemoryType> = Omit<Memory, 'data'> & {
data: Extract<Memory['data'], { type: T }>;
};
export async function rememberConversation(
ctx: ActionCtx,
worldId: Id<'worlds'>,
agentId: GameId<'agents'>,
playerId: GameId<'players'>,
conversationId: GameId<'conversations'>,
) {
const data = await ctx.runQuery(selfInternal.loadConversation, {
worldId,
playerId,
conversationId,
});
const { player, otherPlayer } = data;
const messages = await ctx.runQuery(selfInternal.loadMessages, { worldId, conversationId });
if (!messages.length) {
return;
}
const llmMessages: LLMMessage[] = [
{
role: 'user',
content: `You are ${player.name}, and you just finished a conversation with ${otherPlayer.name}. I would
like you to summarize the conversation from ${player.name}'s perspective, using first-person pronouns like
"I," and add if you liked or disliked this interaction.`,
},
];
const authors = new Set<GameId<'players'>>();
for (const message of messages) {
const author = message.author === player.id ? player : otherPlayer;
authors.add(author.id as GameId<'players'>);
const recipient = message.author === player.id ? otherPlayer : player;
llmMessages.push({
role: 'user',
content: `${author.name} to ${recipient.name}: ${message.text}`,
});
}
llmMessages.push({ role: 'user', content: 'Summary:' });
const { content } = await chatCompletion({
messages: llmMessages,
max_tokens: 50,
});
const description = `Conversation with ${otherPlayer.name} at ${new Date(
data.conversation._creationTime,
).toLocaleString()}: ${content}`;
const importance = await calculateImportance(description);
const { embedding } = await fetchEmbedding(description);
authors.delete(player.id as GameId<'players'>);
await ctx.runMutation(selfInternal.insertMemory, {
agentId,
playerId: player.id,
description,
importance,
lastAccess: messages[messages.length - 1]._creationTime,
data: {
type: 'conversation',
conversationId,
playerIds: [...authors],
},
embedding,
});
await reflectOnMemories(ctx, worldId, playerId);
return description;
}
export const loadConversation = internalQuery({
args: {
worldId: v.id('worlds'),
playerId,
conversationId,
},
handler: async (ctx, args) => {
const world = await ctx.db.get(args.worldId);
if (!world) {
throw new Error(`World ${args.worldId} not found`);
}
const player = world.players.find((p) => p.id === args.playerId);
if (!player) {
throw new Error(`Player ${args.playerId} not found`);
}
const playerDescription = await ctx.db
.query('playerDescriptions')
.withIndex('worldId', (q) => q.eq('worldId', args.worldId).eq('playerId', args.playerId))
.first();
if (!playerDescription) {
throw new Error(`Player description for ${args.playerId} not found`);
}
const conversation = await ctx.db
.query('archivedConversations')
.withIndex('worldId', (q) => q.eq('worldId', args.worldId).eq('id', args.conversationId))
.first();
if (!conversation) {
throw new Error(`Conversation ${args.conversationId} not found`);
}
const otherParticipator = await ctx.db
.query('participatedTogether')
.withIndex('conversation', (q) =>
q
.eq('worldId', args.worldId)
.eq('player1', args.playerId)
.eq('conversationId', args.conversationId),
)
.first();
if (!otherParticipator) {
throw new Error(
`Couldn't find other participant in conversation ${args.conversationId} with player ${args.playerId}`,
);
}
const otherPlayerId = otherParticipator.player2;
let otherPlayer: SerializedPlayer | Doc<'archivedPlayers'> | null =
world.players.find((p) => p.id === otherPlayerId) ?? null;
if (!otherPlayer) {
otherPlayer = await ctx.db
.query('archivedPlayers')
.withIndex('worldId', (q) => q.eq('worldId', world._id).eq('id', otherPlayerId))
.first();
}
if (!otherPlayer) {
throw new Error(`Conversation ${args.conversationId} other player not found`);
}
const otherPlayerDescription = await ctx.db
.query('playerDescriptions')
.withIndex('worldId', (q) => q.eq('worldId', args.worldId).eq('playerId', otherPlayerId))
.first();
if (!otherPlayerDescription) {
throw new Error(`Player description for ${otherPlayerId} not found`);
}
return {
player: { ...player, name: playerDescription.name },
conversation,
otherPlayer: { ...otherPlayer, name: otherPlayerDescription.name },
};
},
});
export async function searchMemories(
ctx: ActionCtx,
playerId: GameId<'players'>,
searchEmbedding: number[],
n: number = 3,
) {
const candidates = await ctx.vectorSearch('memoryEmbeddings', 'embedding', {
vector: searchEmbedding,
filter: (q) => q.eq('playerId', playerId),
limit: n * MEMORY_OVERFETCH,
});
const rankedMemories = await ctx.runMutation(selfInternal.rankAndTouchMemories, {
candidates,
n,
});
return rankedMemories.map(({ memory }) => memory);
}
function makeRange(values: number[]) {
const min = Math.min(...values);
const max = Math.max(...values);
return [min, max] as const;
}
function normalize(value: number, range: readonly [number, number]) {
const [min, max] = range;
return (value - min) / (max - min);
}
export const rankAndTouchMemories = internalMutation({
args: {
candidates: v.array(v.object({ _id: v.id('memoryEmbeddings'), _score: v.number() })),
n: v.number(),
},
handler: async (ctx, args) => {
const ts = Date.now();
const relatedMemories = await asyncMap(args.candidates, async ({ _id }) => {
const memory = await ctx.db
.query('memories')
.withIndex('embeddingId', (q) => q.eq('embeddingId', _id))
.first();
if (!memory) throw new Error(`Memory for embedding ${_id} not found`);
return memory;
});
// TODO: fetch <count> recent memories and <count> important memories
// so we don't miss them in case they were a little less relevant.
const recencyScore = relatedMemories.map((memory) => {
const hoursSinceAccess = (ts - memory.lastAccess) / 1000 / 60 / 60;
return 0.99 ** Math.floor(hoursSinceAccess);
});
const relevanceRange = makeRange(args.candidates.map((c) => c._score));
const importanceRange = makeRange(relatedMemories.map((m) => m.importance));
const recencyRange = makeRange(recencyScore);
const memoryScores = relatedMemories.map((memory, idx) => ({
memory,
overallScore:
normalize(args.candidates[idx]._score, relevanceRange) +
normalize(memory.importance, importanceRange) +
normalize(recencyScore[idx], recencyRange),
}));
memoryScores.sort((a, b) => b.overallScore - a.overallScore);
const accessed = memoryScores.slice(0, args.n);
await asyncMap(accessed, async ({ memory }) => {
if (memory.lastAccess < ts - MEMORY_ACCESS_THROTTLE) {
await ctx.db.patch(memory._id, { lastAccess: ts });
}
});
return accessed;
},
});
export const loadMessages = internalQuery({
args: {
worldId: v.id('worlds'),
conversationId,
},
handler: async (ctx, args): Promise<Doc<'messages'>[]> => {
const messages = await ctx.db
.query('messages')
.withIndex('conversationId', (q) =>
q.eq('worldId', args.worldId).eq('conversationId', args.conversationId),
)
.collect();
return messages;
},
});
async function calculateImportance(description: string) {
const { content: importanceRaw } = await chatCompletion({
messages: [
{
role: 'user',
content: `On the scale of 0 to 9, where 0 is purely mundane (e.g., brushing teeth, making bed) and 9 is extremely poignant (e.g., a break up, college acceptance), rate the likely poignancy of the following piece of memory.
Memory: ${description}
Answer on a scale of 0 to 9. Respond with number only, e.g. "5"`,
},
],
temperature: 0.0,
max_tokens: 1,
});
let importance = parseFloat(importanceRaw);
if (isNaN(importance)) {
importance = +(importanceRaw.match(/\d+/)?.[0] ?? NaN);
}
if (isNaN(importance)) {
console.debug('Could not parse memory importance from: ', importanceRaw);
importance = 5;
}
return importance;
}
const { embeddingId: _embeddingId, ...memoryFieldsWithoutEmbeddingId } = memoryFields;
export const insertMemory = internalMutation({
args: {
agentId,
embedding: v.array(v.float64()),
...memoryFieldsWithoutEmbeddingId,
},
handler: async (ctx, { agentId: _, embedding, ...memory }): Promise<void> => {
const embeddingId = await ctx.db.insert('memoryEmbeddings', {
playerId: memory.playerId,
embedding,
});
await ctx.db.insert('memories', {
...memory,
embeddingId,
});
},
});
export const insertReflectionMemories = internalMutation({
args: {
worldId: v.id('worlds'),
playerId,
reflections: v.array(
v.object({
description: v.string(),
relatedMemoryIds: v.array(v.id('memories')),
importance: v.number(),
embedding: v.array(v.float64()),
}),
),
},
handler: async (ctx, { playerId, reflections }) => {
const lastAccess = Date.now();
for (const { embedding, relatedMemoryIds, ...rest } of reflections) {
const embeddingId = await ctx.db.insert('memoryEmbeddings', {
playerId,
embedding,
});
await ctx.db.insert('memories', {
playerId,
embeddingId,
lastAccess,
...rest,
data: {
type: 'reflection',
relatedMemoryIds,
},
});
}
},
});
async function reflectOnMemories(
ctx: ActionCtx,
worldId: Id<'worlds'>,
playerId: GameId<'players'>,
) {
const { memories, lastReflectionTs, name } = await ctx.runQuery(
internal.agent.memory.getReflectionMemories,
{
worldId,
playerId,
numberOfItems: 100,
},
);
// should only reflect if lastest 100 items have importance score of >500
const sumOfImportanceScore = memories
.filter((m) => m._creationTime > (lastReflectionTs ?? 0))
.reduce((acc, curr) => acc + curr.importance, 0);
const shouldReflect = sumOfImportanceScore > 500;
if (!shouldReflect) {
return false;
}
console.debug('sum of importance score = ', sumOfImportanceScore);
console.debug('Reflecting...');
const prompt = ['[no prose]', '[Output only JSON]', `You are ${name}, statements about you:`];
memories.forEach((m, idx) => {
prompt.push(`Statement ${idx}: ${m.description}`);
});
prompt.push('What 3 high-level insights can you infer from the above statements?');
prompt.push(
'Return in JSON format, where the key is a list of input statements that contributed to your insights and value is your insight. Make the response parseable by Typescript JSON.parse() function. DO NOT escape characters or include "\n" or white space in response.',
);
prompt.push(
'Example: [{insight: "...", statementIds: [1,2]}, {insight: "...", statementIds: [1]}, ...]',
);
const { content: reflection } = await chatCompletion({
messages: [
{
role: 'user',
content: prompt.join('\n'),
},
],
});
try {
const insights = JSON.parse(reflection) as { insight: string; statementIds: number[] }[];
const memoriesToSave = await asyncMap(insights, async (item) => {
const relatedMemoryIds = item.statementIds.map((idx: number) => memories[idx]._id);
const importance = await calculateImportance(item.insight);
const { embedding } = await fetchEmbedding(item.insight);
console.debug('adding reflection memory...', item.insight);
return {
description: item.insight,
embedding,
importance,
relatedMemoryIds,
};
});
await ctx.runMutation(selfInternal.insertReflectionMemories, {
worldId,
playerId,
reflections: memoriesToSave,
});
} catch (e) {
console.error('error saving or parsing reflection', e);
console.debug('reflection', reflection);
return false;
}
return true;
}
export const getReflectionMemories = internalQuery({
args: { worldId: v.id('worlds'), playerId, numberOfItems: v.number() },
handler: async (ctx, args) => {
const world = await ctx.db.get(args.worldId);
if (!world) {
throw new Error(`World ${args.worldId} not found`);
}
const player = world.players.find((p) => p.id === args.playerId);
if (!player) {
throw new Error(`Player ${args.playerId} not found`);
}
const playerDescription = await ctx.db
.query('playerDescriptions')
.withIndex('worldId', (q) => q.eq('worldId', args.worldId).eq('playerId', args.playerId))
.first();
if (!playerDescription) {
throw new Error(`Player description for ${args.playerId} not found`);
}
const memories = await ctx.db
.query('memories')
.withIndex('playerId', (q) => q.eq('playerId', player.id))
.order('desc')
.take(args.numberOfItems);
const lastReflection = await ctx.db
.query('memories')
.withIndex('playerId_type', (q) =>
q.eq('playerId', args.playerId).eq('data.type', 'reflection'),
)
.order('desc')
.first();
return {
name: playerDescription.name,
memories,
lastReflectionTs: lastReflection?._creationTime,
};
},
});
export async function latestMemoryOfType<T extends MemoryType>(
db: DatabaseReader,
playerId: GameId<'players'>,
type: T,
) {
const entry = await db
.query('memories')
.withIndex('playerId_type', (q) => q.eq('playerId', playerId).eq('data.type', type))
.order('desc')
.first();
if (!entry) return null;
return entry as MemoryOfType<T>;
}
|