Skip to content

Commit

Permalink
bugfix fix baiduvdb retriever
Browse files Browse the repository at this point in the history
  • Loading branch information
fengjial committed Mar 19, 2024
1 parent a5ebcb0 commit 34007eb
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,10 @@ def _create_table_in_db(
fields.append(Field(FIELD_TEXT, FieldType.STRING))
fields.append(
Field(
FIELD_VECTOR, FieldType.FLOAT_VECTOR, dimension=table_params.dimension
FIELD_VECTOR,
FieldType.FLOAT_VECTOR,
dimension=table_params.dimension,
not_null=True,
)
)

Expand Down

0 comments on commit 34007eb

Please sign in to comment.