chromium/components/segmentation_platform/embedder/default_model/tablet_productivity_user_model.h

// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef COMPONENTS_SEGMENTATION_PLATFORM_EMBEDDER_DEFAULT_MODEL_TABLET_PRODUCTIVITY_USER_MODEL_H_
#define COMPONENTS_SEGMENTATION_PLATFORM_EMBEDDER_DEFAULT_MODEL_TABLET_PRODUCTIVITY_USER_MODEL_H_

#include "components/segmentation_platform/public/model_provider.h"

namespace segmentation_platform {

struct Config;

// Segmentation tablet productivity user model provider. Provides a default
// model and metadata for the tablet productivity user optimization target.
class TabletProductivityUserModel : public DefaultModelProvider {
 public:
  TabletProductivityUserModel();
  ~TabletProductivityUserModel() override = default;

  // Disallow copy/assign.
  TabletProductivityUserModel(const TabletProductivityUserModel&) = delete;
  TabletProductivityUserModel& operator=(const TabletProductivityUserModel&) =
      delete;

  static std::unique_ptr<Config> GetConfig();

  // ModelProvider implementation.
  std::unique_ptr<ModelConfig> GetModelConfig() override;

  void ExecuteModelWithInput(const ModelProvider::Request& inputs,
                             ExecutionCallback callback) override;
};

}  // namespace segmentation_platform

#endif  // COMPONENTS_SEGMENTATION_PLATFORM_EMBEDDER_DEFAULT_MODEL_TABLET_PRODUCTIVITY_USER_MODEL_H_