chromium/components/segmentation_platform/embedder/default_model/compose_promotion.cc

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

#include "components/segmentation_platform/embedder/default_model/compose_promotion.h"

#include <memory>

#include "base/task/sequenced_task_runner.h"
#include "components/compose/core/browser/config.h"
#include "components/segmentation_platform/internal/metadata/metadata_writer.h"
#include "components/segmentation_platform/public/config.h"
#include "components/segmentation_platform/public/constants.h"
#include "components/segmentation_platform/public/features.h"
#include "components/segmentation_platform/public/proto/aggregation.pb.h"
#include "components/segmentation_platform/public/proto/model_metadata.pb.h"

namespace segmentation_platform {

namespace {
SegmentId;

// Default parameters for ComposePromotion model.
constexpr SegmentId kSegmentId =;
constexpr int64_t kModelVersion =;
// Store 28 buckets of input data (28 days).
constexpr int64_t kSignalStorageLength =;
// No signals are being collected, so no collection length is required.
constexpr int64_t kMinSignalCollectionLength =;

}  // namespace

// static
std::unique_ptr<Config> ComposePromotion::GetConfig() {}

ComposePromotion::ComposePromotion() :{}

std::unique_ptr<DefaultModelProvider::ModelConfig>
ComposePromotion::GetModelConfig() {}

void ComposePromotion::ExecuteModelWithInput(
    const ModelProvider::Request& inputs,
    ExecutionCallback callback) {}

}  // namespace segmentation_platform