Convert timestamp to integer in vector DB storage
This commit is contained in:
parent
9ff3542ab2
commit
ca85f8a461
1 changed files with 1 additions and 1 deletions
|
|
@ -89,7 +89,7 @@ class NanoVectorDBStorage(BaseVectorStorage):
|
|||
if not data:
|
||||
return
|
||||
|
||||
current_time = time.time()
|
||||
current_time = int(time.time())
|
||||
list_data = [
|
||||
{
|
||||
"__id__": k,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue