-
Notifications
You must be signed in to change notification settings - Fork 198
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Partial updates for unstructured indexes (#1110)
Co-authored-by: yihanzhao <yihan@marqo.ai>
- Loading branch information
1 parent
e556293
commit cc707da
Showing
47 changed files
with
4,154 additions
and
247 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
src/marqo/core/semi_structured_vespa_index/marqo_field_types.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
from enum import Enum | ||
|
||
|
||
class MarqoFieldTypes(Enum): | ||
""" | ||
Enum class for Marqo field types. Used to specify the type of field in a Marqo index. | ||
""" | ||
BOOL = 'bool' | ||
INT_MAP = 'int_map_entry' | ||
FLOAT_MAP = 'float_map_entry' | ||
INT = 'int' | ||
FLOAT = 'float' | ||
STRING_ARRAY = 'string_array' | ||
STRING = 'string' | ||
TENSOR = 'tensor' |
Oops, something went wrong.