Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions data/data_type.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import Dict, List
from typing import Dict, List, Any
from pydantic import BaseModel


Expand All @@ -13,7 +13,7 @@ class EmbeddingRebuildRequest(BaseModel):
# note that sub_key is optional and only for embedding lists relevant
# also sub_key is an int but converted to string in the request

changes: Dict[str, List[Dict[str, str]]]
changes: Dict[str, List[Dict[str, Any]]]


class EmbeddingCalcTensorByPkl(BaseModel):
Expand Down