Skip to content

Commit 0b02e3b

Browse files
committed
new publishedUrl field
1 parent d6fee57 commit 0b02e3b

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

llms/extensions/app/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,15 @@ def get_db():
5151
"stats",
5252
"provider",
5353
"providerModel",
54-
"publishedAt",
5554
"startedAt",
5655
"completedAt",
5756
"metadata",
5857
"error",
5958
"ref",
6059
"contextTokens",
6160
"parentId",
61+
"publishedAt",
62+
"publishedUrl",
6263
]
6364

6465
def thread_dto(row):

llms/extensions/app/db.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ def __init__(self, ctx, db_path):
5151
"stats": "JSON",
5252
"provider": "TEXT",
5353
"providerModel": "TEXT",
54-
"publishedAt": "TIMESTAMP",
5554
"startedAt": "TIMESTAMP",
5655
"completedAt": "TIMESTAMP",
5756
"metadata": "JSON",
@@ -61,6 +60,8 @@ def __init__(self, ctx, db_path):
6160
"providerResponse": "JSON",
6261
"contextTokens": "INTEGER",
6362
"parentId": "INTEGER",
63+
"publishedAt": "TIMESTAMP",
64+
"publishedUrl": "TEXT",
6465
},
6566
"request": {
6667
"id": "INTEGER",

0 commit comments

Comments
 (0)