Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions assistant/src/daemon/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -756,6 +756,7 @@ export class DaemonServer {
if (cuSessionIds) {
for (const cuSessionId of cuSessionIds) {
this.cuObservationParseSequence.delete(cuSessionId);
this.cuSessionMetadata.delete(cuSessionId);
Comment thread
Jasonnnz marked this conversation as resolved.
const cuSession = this.cuSessions.get(cuSessionId);
if (cuSession) {
cuSession.abort();
Expand Down
2 changes: 1 addition & 1 deletion assistant/src/memory/db.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1673,7 +1673,7 @@ function migrateRemoveAssistantIdColumns(database: ReturnType<typeof drizzle<typ
content_hash TEXT,
thumbnail_base64 TEXT,
created_at INTEGER NOT NULL,
storage_kind TEXT DEFAULT 'inline_base64',
storage_kind TEXT NOT NULL DEFAULT 'inline_base64',
file_path TEXT,
sha256 TEXT,
expires_at INTEGER
Expand Down
Loading