inference fixes
This commit is contained in:
@@ -91,7 +91,7 @@ async function createEpisode(sessionId, userMessage, aiResponse, tokenCount = nu
|
||||
function getEpisode(id) {
|
||||
const db = getDB();
|
||||
const stmt = db.prepare(`SELECT * FROM episodes WHERE id = ?`);
|
||||
return parseEpisode(stmt.get(id));
|
||||
return parseRow(stmt.get(id));
|
||||
}
|
||||
|
||||
// Retrieves episodes for a given session, ordered by creation time descending, with pagination
|
||||
|
||||
Reference in New Issue
Block a user