Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix warnings #82

Merged
merged 4 commits into from
Aug 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion src/cpr_sdk/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
_MAJOR = "1"
_MINOR = "3"
_PATCH = "11"
_PATCH = "12"
_SUFFIX = ""

VERSION_SHORT = "{0}.{1}".format(_MAJOR, _MINOR)
Expand Down
1 change: 0 additions & 1 deletion tests/local_vespa/docker-compose.dev.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: "3.7"
services:
vespadaltest:
image: vespaengine/vespa:8.396.18
Expand Down
40 changes: 20 additions & 20 deletions tests/local_vespa/test_app/schemas/document_passage.sd
Original file line number Diff line number Diff line change
Expand Up @@ -64,29 +64,29 @@ schema document_passage {
import field search_weights_ref.passage_weight as passage_weight {}

fieldset default {
fields: text_block, text_embedding
fields: text_block
}

document-summary search_summary {
summary family_name type string {}
summary family_description type string {}
summary family_import_id type string {}
summary family_slug type string {}
summary family_category type string {}
summary family_publication_ts type string {}
summary family_geography type string {}
summary family_source type string {}
summary document_import_id type string {}
summary document_slug type string {}
summary document_languages type array<string> {}
summary document_content_type type string {}
summary document_cdn_object type string {}
summary document_source_url type string {}
summary text_block type string {}
summary text_block_id type string {}
summary text_block_type type string {}
summary text_block_page type int {}
summary text_block_coords type array<array<float>> {}
summary family_name {}
summary family_description {}
summary family_import_id {}
summary family_slug {}
summary family_category {}
summary family_publication_ts {}
summary family_geography {}
summary family_source {}
summary document_import_id {}
summary document_slug {}
summary document_languages {}
summary document_content_type {}
summary document_cdn_object {}
summary document_source_url {}
summary text_block {}
summary text_block_id {}
summary text_block_type {}
summary text_block_page {}
summary text_block_coords {}
}

rank-profile exact inherits default {
Expand Down
2 changes: 1 addition & 1 deletion tests/local_vespa/test_app/schemas/family_document.sd
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ schema family_document {
import field search_weights_ref.description_weight as description_weight {}

fieldset default {
fields: family_name_index, family_description_index, family_description_embedding
fields: family_name_index, family_description_index
}

rank-profile exact inherits default {
Expand Down
Loading