// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
syntax = "proto2";
option optimize_for = LITE_RUNTIME;
option java_package = "org.chromium.components.optimization_guide.proto";
option java_outer_classname = "PageTopicsOverrideListProto";
package optimization_guide.proto;
// The whole override list.
message PageTopicsOverrideList {
repeated PageTopicsOverrideEntry entries = 1;
}
// An individual entry in the override list. |domain| is expected to be the
// exact string input that is otherwise passed to the TFLite model, with all
// needed pre-processing and/or cleaning done to it already.
message PageTopicsOverrideEntry {
optional string domain = 1;
optional AnnotatedPageTopics topics = 2;
}
// The topic identifiers for the given domain.
message AnnotatedPageTopics {
repeated int32 topic_ids = 1;
}