agentgui 1.0.805 → 1.0.807
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/db-queries.js +1 -1
- package/package.json +1 -1
package/lib/db-queries.js
CHANGED
|
@@ -36,7 +36,7 @@ export function createQueries(db, prep, generateId) {
|
|
|
36
36
|
|
|
37
37
|
getConversationsList() {
|
|
38
38
|
const stmt = prep(
|
|
39
|
-
'SELECT id, agentId, title, agentType, created_at, updated_at, messageCount, workingDirectory, isStreaming, model, subAgent, pinned, sortOrder FROM conversations WHERE status NOT IN (?, ?) ORDER BY pinned DESC, sortOrder ASC, updated_at DESC'
|
|
39
|
+
'SELECT id, agentId, title, agentType, created_at, updated_at, messageCount, workingDirectory, isStreaming, model, subAgent, pinned, sortOrder, tags FROM conversations WHERE status NOT IN (?, ?) ORDER BY pinned DESC, sortOrder ASC, updated_at DESC'
|
|
40
40
|
);
|
|
41
41
|
return stmt.all('deleted', 'archived');
|
|
42
42
|
},
|