1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
ash / webui / recorder_app_ui / model_constants.cc [blame]
// 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 "ash/webui/recorder_app_ui/model_constants.h"
namespace ash {
constexpr speech::LanguageCode kDefaultLanguageCode =
speech::LanguageCode::kEnUs;
constexpr char kSummaryXsModelUuid[] = "3ecdce05-c36d-46fa-9f21-bad92521e872";
constexpr char kSummaryXxsModelUuid[] = "73caa678-45cb-4007-abb9-f04e431376da";
constexpr char kTitleSuggestionXsModelUuid[] =
"2ba72641-25bc-4822-853e-49cf8710cffb";
constexpr char kTitleSuggestionXxsModelUuid[] =
"1bdd5282-2d14-413c-bf43-9ea6d55c38a6";
const uint32_t kInputTokenXsModelLimit = 11000; // 11k
const uint32_t kInputTokenXxsModelLimit = 3072; // 3k
} // namespace ash