Spaces:
Running
Running
File size: 36,038 Bytes
5f923cd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 | // Copyright 2025 The ODML Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "runtime/conversation/conversation.h"
#include <iterator>
#include <memory>
#include <optional>
#include <string>
#include <utility>
#include <variant>
#include <vector>
#include "absl/container/flat_hash_map.h" // from @com_google_absl
#include "absl/functional/any_invocable.h" // from @com_google_absl
#include "absl/memory/memory.h" // from @com_google_absl
#include "absl/status/status.h" // from @com_google_absl
#include "absl/status/statusor.h" // from @com_google_absl
#include "absl/strings/match.h" // from @com_google_absl
#include "absl/strings/str_cat.h" // from @com_google_absl
#include "absl/strings/string_view.h" // from @com_google_absl
#include "absl/synchronization/mutex.h" // from @com_google_absl
#include "absl/time/clock.h" // from @com_google_absl
#include "absl/time/time.h" // from @com_google_absl
#include "absl/types/span.h" // from @com_google_absl
#include "nlohmann/json.hpp" // from @nlohmann_json
#include "runtime/components/constrained_decoding/constraint_provider.h"
#include "runtime/components/constrained_decoding/constraint_provider_config.h"
#include "runtime/components/constrained_decoding/constraint_provider_factory.h"
#include "runtime/components/prompt_template.h"
#include "runtime/conversation/channel_util.h"
#include "runtime/conversation/internal_callback_util.h"
#include "runtime/conversation/io_types.h"
#include "runtime/conversation/model_data_processor/config_registry.h"
#include "runtime/conversation/model_data_processor/model_data_processor.h"
#include "runtime/conversation/model_data_processor/model_data_processor_factory.h"
#include "runtime/conversation/prompt_utils.h"
#include "runtime/engine/engine.h"
#include "runtime/engine/engine_settings.h"
#include "runtime/engine/io_types.h"
#include "runtime/proto/llm_model_type.pb.h"
#include "runtime/util/model_type_utils.h"
#include "runtime/util/status_macros.h"
namespace litert::lm {
namespace {
constexpr absl::string_view kRoleKey = "role";
constexpr absl::string_view kUser = "user";
constexpr absl::string_view kChannelsKey = "channels";
constexpr absl::string_view kChannelContentCheckpoint =
"channel_content_checkpoint";
bool IsEmptyInputError(const absl::Status& status) {
return absl::IsInvalidArgument(status) &&
absl::StrContains(status.message(), "Input is empty");
}
// Ignores the invalid argument error when Session Prefill is called with empty
// input.
absl::Status IgnoreEmptyInputError(const absl::Status& status) {
return IsEmptyInputError(status) ? absl::OkStatus() : status;
}
bool IsEmptyPreface(const Preface& preface) {
auto json_preface = std::get<JsonPreface>(preface);
return (json_preface.messages.is_null() || json_preface.messages.empty()) &&
(json_preface.tools.is_null() || json_preface.tools.empty()) &&
(json_preface.extra_context.is_null() ||
json_preface.extra_context.empty());
}
bool IsUserMessage(const nlohmann::ordered_json& json_msg) {
return json_msg.contains(kRoleKey) && json_msg[kRoleKey].is_string() &&
json_msg[kRoleKey].get<absl::string_view>() == kUser;
}
} // namespace
absl::StatusOr<ConversationConfig> ConversationConfig::CreateDefault(
const Engine& engine) {
return ConversationConfig::Builder().Build(engine);
}
absl::StatusOr<ConversationConfig> ConversationConfig::CreateInternal(
const Engine& engine, const SessionConfig& session_config,
std::optional<Preface> preface,
std::optional<PromptTemplate> overwrite_prompt_template,
std::optional<DataProcessorConfig> overwrite_processor_config,
bool enable_constrained_decoding, bool prefill_preface_on_init,
std::optional<ConstraintProviderConfig> constraint_provider_config,
std::optional<std::vector<Channel>> overwrite_channels,
bool filter_channel_content_from_kv_cache) {
if (preface.has_value() && !std::holds_alternative<JsonPreface>(*preface)) {
return absl::InvalidArgumentError("Only JsonPreface is supported for now.");
}
SessionConfig session_config_copy = session_config;
session_config_copy.SetApplyPromptTemplateInSession(false);
RETURN_IF_ERROR(
session_config_copy.MaybeUpdateAndValidate(engine.GetEngineSettings()));
auto metadata = engine.GetEngineSettings().GetLlmMetadata();
PromptTemplate prompt_template("");
if (overwrite_prompt_template.has_value()) {
prompt_template = *overwrite_prompt_template;
} else if (metadata.has_value()) {
if (metadata->has_jinja_prompt_template()) {
prompt_template = PromptTemplate(metadata->jinja_prompt_template());
} else if (metadata->has_prompt_templates()) {
ASSIGN_OR_RETURN(
std::string jinja_source,
GetDefaultJinjaPromptTemplate(metadata->prompt_templates(),
metadata->llm_model_type()));
prompt_template = PromptTemplate(jinja_source);
} else {
return absl::InvalidArgumentError(
"Failed to select jinja prompt template from llm metadata.");
}
} else {
return absl::InvalidArgumentError(
"Failed to select jinja prompt template. No llm metadata provided.");
}
std::vector<Channel> channels;
if (overwrite_channels.has_value()) {
channels = *std::move(overwrite_channels);
} else if (metadata.has_value()) {
for (const auto& channel : metadata->channels()) {
channels.push_back(
litert::lm::Channel{.channel_name = channel.channel_name(),
.start = channel.start(),
.end = channel.end()});
}
}
for (const auto& channel : channels) {
if (channel.channel_name.empty()) {
return absl::InvalidArgumentError(
"Custom channel must have a non-empty channel_name.");
}
}
DataProcessorConfig processor_config;
if (overwrite_processor_config.has_value()) {
// Use the overwrite processor config if provided.
processor_config = *overwrite_processor_config;
} else {
// Build the processor config from the model metadata.
ASSIGN_OR_RETURN(processor_config,
CreateDataProcessorConfigFromLlmModelType(
session_config_copy.GetLlmModelType()));
}
return ConversationConfig(
session_config_copy, preface.value_or(JsonPreface()), prompt_template,
processor_config, enable_constrained_decoding, prefill_preface_on_init,
std::move(constraint_provider_config), std::move(channels),
filter_channel_content_from_kv_cache);
}
absl::StatusOr<std::string>
Conversation::GetSingleTurnTextFromSingleTurnTemplate(
const JsonMessage& message, const OptionalArgs& optional_args) {
absl::MutexLock lock(history_mutex_); // NOLINT
ASSIGN_OR_RETURN(
auto result,
model_data_processor_->RenderSingleTurnTemplate(
history_,
config_.prefill_preface_on_init() ? JsonPreface() : preface_, message,
prompt_template_,
/*current_is_appending_message=*/is_appending_message_,
/*append_message=*/optional_args.has_pending_message,
optional_args.extra_context));
is_appending_message_ = result.is_appending_message;
return result.text;
}
absl::StatusOr<std::string> Conversation::GetSingleTurnTextFromFullHistory(
const JsonMessage& json_message, const OptionalArgs& optional_args) {
PromptTemplateInput old_tmpl_input;
RETURN_IF_ERROR(FillPrefaceForPromptTemplateInput(
preface_, model_data_processor_.get(), old_tmpl_input));
// Merge extra context for the message into the extra context provided in the
// preface. Existing keys will be overwritten.
if (optional_args.extra_context.has_value()) {
for (const auto& [key, value] : optional_args.extra_context->items()) {
old_tmpl_input.extra_context[key] = value;
}
}
absl::MutexLock lock(history_mutex_); // NOLINT
for (const auto& history_msg : history_) {
if (std::holds_alternative<nlohmann::ordered_json>(history_msg)) {
ASSIGN_OR_RETURN(nlohmann::ordered_json message_tmpl_input,
model_data_processor_->MessageToTemplateInput(
std::get<nlohmann::ordered_json>(history_msg)));
old_tmpl_input.messages.push_back(message_tmpl_input);
} else {
return absl::UnimplementedError("Message type is not supported yet");
}
}
nlohmann::ordered_json messages =
json_message.is_array() ? json_message
: nlohmann::ordered_json::array({json_message});
if (history_.empty() && !config_.prefill_preface_on_init()) {
PromptTemplateInput new_tmpl_input = std::move(old_tmpl_input);
for (const auto& message : messages) {
ASSIGN_OR_RETURN(nlohmann::ordered_json message_tmpl_input,
model_data_processor_->MessageToTemplateInput(message));
new_tmpl_input.messages.push_back(message_tmpl_input);
}
new_tmpl_input.add_generation_prompt = true;
return prompt_template_.Apply(new_tmpl_input);
}
std::string old_string;
if (!IsEmptyPreface(preface_) || !history_.empty()) {
old_tmpl_input.add_generation_prompt = false;
ASSIGN_OR_RETURN(old_string, prompt_template_.Apply(old_tmpl_input));
}
PromptTemplateInput new_tmpl_input = std::move(old_tmpl_input);
for (const auto& message : messages) {
ASSIGN_OR_RETURN(nlohmann::ordered_json message_tmpl_input,
model_data_processor_->MessageToTemplateInput(message));
new_tmpl_input.messages.push_back(message_tmpl_input);
}
new_tmpl_input.add_generation_prompt = true;
ASSIGN_OR_RETURN(const std::string& new_string,
prompt_template_.Apply(new_tmpl_input));
if (new_string.substr(0, old_string.size()) != old_string) {
return absl::InternalError(absl::StrCat(
"The new rendered template string does not start with the previous "
"rendered template string. \nold_string: ",
old_string, "\nnew_string: ", new_string));
}
return {new_string.substr(old_string.size(),
new_string.size() - old_string.size())};
}
absl::StatusOr<std::string> Conversation::GetSingleTurnText(
const Message& message, const OptionalArgs& optional_args) {
if (!std::holds_alternative<nlohmann::ordered_json>(message)) {
return absl::InvalidArgumentError("Json message is required for now.");
}
nlohmann::ordered_json json_message =
std::get<nlohmann::ordered_json>(message);
if (!prompt_template_.GetCapabilities().supports_single_turn &&
optional_args.has_pending_message) {
return absl::InvalidArgumentError(
"The prompt template does not support single turn template, but "
"has_pending_message is true. `has_pending_message` is only valid for "
"model templates and ModelDataProcessor that supports single turn "
"prompt rendering.");
}
if (prompt_template_.GetCapabilities().supports_single_turn) {
auto single_turn_text =
GetSingleTurnTextFromSingleTurnTemplate(json_message, optional_args);
if (!absl::IsUnimplemented(single_turn_text.status())) {
return single_turn_text;
}
}
return GetSingleTurnTextFromFullHistory(json_message, optional_args);
}
absl::StatusOr<DecodeConfig> Conversation::CreateDecodeConfig(
std::optional<ConstraintArg> decoding_constraint,
std::optional<int> max_output_tokens) {
auto decode_config = DecodeConfig::CreateDefault();
if (max_output_tokens.has_value()) {
decode_config.SetMaxOutputTokens(max_output_tokens.value());
}
if (decoding_constraint.has_value() && constraint_provider_ != nullptr) {
ASSIGN_OR_RETURN(constraint_, constraint_provider_->CreateConstraint(
std::move(decoding_constraint).value()));
} else if (config_.constrained_decoding_enabled() && constraint_ == nullptr &&
std::holds_alternative<JsonPreface>(preface_)) {
// Create a constraint from the tools defined in the preface, if any.
auto json_preface = std::get<JsonPreface>(preface_);
if (!json_preface.tools.is_null()) {
auto constraint =
model_data_processor_->CreateConstraint(json_preface.tools);
if (constraint.ok()) {
constraint_ = std::move(constraint.value());
} else if (!absl::IsUnimplemented(constraint.status())) {
return constraint.status();
}
}
}
decode_config.SetConstraint(constraint_.get());
return decode_config;
}
absl::StatusOr<std::unique_ptr<Conversation>> Conversation::Create(
Engine& engine, const ConversationConfig& config) {
absl::Time start_time = absl::Now();
if (!std::holds_alternative<JsonPreface>(config.GetPreface())) {
return absl::InvalidArgumentError("Only JsonPreface is supported for now.");
}
ASSIGN_OR_RETURN(std::unique_ptr<Engine::Session> session,
engine.CreateSession(config.GetSessionConfig()));
ASSIGN_OR_RETURN(
std::unique_ptr<ModelDataProcessor> model_data_processor,
CreateModelDataProcessor(config.GetProcessorConfig(), config.GetPreface(),
&engine.GetTokenizer(),
session->GetSessionConfig().GetStopTokenIds(),
config.constrained_decoding_enabled(),
config.GetPromptTemplate().GetCapabilities()));
std::unique_ptr<ConstraintProvider> constraint_provider;
if (config.constraint_provider_config().has_value()) {
ASSIGN_OR_RETURN(
constraint_provider,
CreateConstraintProvider(
config.constraint_provider_config().value(), engine.GetTokenizer(),
session->GetSessionConfig().GetStopTokenIds()));
}
auto conversation = absl::WrapUnique(new Conversation(
engine, std::move(session), std::move(model_data_processor),
config.GetPreface(), config.GetPromptTemplate(), config,
std::move(constraint_provider)));
if (config.prefill_preface_on_init() &&
!IsEmptyPreface(config.GetPreface())) {
std::string single_turn_text;
std::vector<Message> tmp_history;
bool fallback =
!conversation->prompt_template_.GetCapabilities().supports_single_turn;
const auto render_result =
conversation->model_data_processor_->RenderSingleTurnTemplate(
tmp_history, config.GetPreface(), JsonMessage(),
config.GetPromptTemplate(),
/*current_is_appending_message=*/false,
/*append_message=*/false,
/*extra_context=*/std::nullopt);
if (fallback || absl::IsUnimplemented(render_result.status())) {
// Fallback to the old way of prefilling the preface.
PromptTemplateInput tmpl_input;
RETURN_IF_ERROR(FillPrefaceForPromptTemplateInput(
config.GetPreface(), conversation->model_data_processor_.get(),
tmpl_input));
tmpl_input.add_generation_prompt = false;
ASSIGN_OR_RETURN(single_turn_text,
conversation->prompt_template_.Apply(tmpl_input));
} else if (render_result.ok()) {
single_turn_text = render_result->text;
} else {
return render_result.status();
}
ASSIGN_OR_RETURN(const auto session_inputs,
conversation->model_data_processor_->ToInputDataVector(
single_turn_text,
std::get<JsonPreface>(config.GetPreface()).messages,
std::monostate()));
if (!session_inputs.empty()) {
RETURN_IF_ERROR(conversation->session_->RunPrefill(session_inputs));
}
}
if (engine.GetEngineSettings().IsBenchmarkEnabled()) {
ASSIGN_OR_RETURN(BenchmarkInfo * benchmark_info,
conversation->GetMutableBenchmarkInfo());
RETURN_IF_ERROR(benchmark_info->InitPhaseRecord(
BenchmarkInfo::InitPhase::kConversation, absl::Now() - start_time));
}
return conversation;
}
void Conversation::AddTaskController(
const std::optional<std::string>& task_group_id,
std::unique_ptr<Engine::Session::TaskController> task_controller) {
if (task_group_id.has_value() && task_controller != nullptr) {
absl::MutexLock lock(task_controllers_mutex_);
task_controllers_[*task_group_id].emplace_back(std::move(task_controller));
}
}
absl::StatusOr<Message> Conversation::SendMessage(const Message& message,
OptionalArgs optional_args) {
if (!std::holds_alternative<nlohmann::ordered_json>(message)) {
return absl::InvalidArgumentError("Json message is required for now.");
}
auto json_message = std::get<nlohmann::ordered_json>(message);
// Session inputs to be prefilled.
std::vector<InputData> session_inputs;
// If the incoming message is a user message, rewind to the checkpoint that
// was saved before the assistant message containing channel content, and
// prefill all subsequent messages with channel content removed.
if (config_.filter_channel_content_from_kv_cache() &&
session_checkpoint_supported_ && IsUserMessage(json_message)) {
ASSIGN_OR_RETURN(std::vector<InputData> rewound_session_inputs,
RewindAndGetInputDataVector());
session_inputs.insert(
session_inputs.end(),
std::make_move_iterator(rewound_session_inputs.begin()),
std::make_move_iterator(rewound_session_inputs.end()));
}
ASSIGN_OR_RETURN(const std::string& single_turn_text,
GetSingleTurnText(message, optional_args));
absl::MutexLock lock(history_mutex_); // NOLINT
if (json_message.is_array()) {
for (const auto& message : json_message) {
history_.push_back(message);
}
} else {
history_.push_back(json_message);
}
ASSIGN_OR_RETURN(
auto message_session_inputs,
model_data_processor_->ToInputDataVector(
single_turn_text, nlohmann::ordered_json::array({json_message}),
optional_args.args.value_or(std::monostate())));
session_inputs.insert(session_inputs.end(),
std::make_move_iterator(message_session_inputs.begin()),
std::make_move_iterator(message_session_inputs.end()));
RETURN_IF_ERROR(IgnoreEmptyInputError(session_->RunPrefill(session_inputs)));
if (is_appending_message_) {
return JsonMessage();
} else {
if (config_.filter_channel_content_from_kv_cache() &&
session_checkpoint_supported_ &&
!checkpoint_message_index_.has_value()) {
// Before running decode, save a checkpoint for channel content
// filtering.
if (!session_->SaveCheckpoint(kChannelContentCheckpoint).ok()) {
session_checkpoint_supported_ = false;
}
}
ASSIGN_OR_RETURN(
auto decode_config,
CreateDecodeConfig(std::move(optional_args.decoding_constraint),
optional_args.max_output_tokens));
ASSIGN_OR_RETURN(Responses responses, session_->RunDecode(decode_config));
// Extract channel content from the responses. Modifies responses in place.
ASSIGN_OR_RETURN(auto channel_content,
ExtractChannelContent(config_.GetChannels(), responses));
// Convert responses to a message.
ASSIGN_OR_RETURN(
Message assistant_message,
model_data_processor_->ToMessage(
responses, optional_args.args.value_or(std::monostate())));
// Insert channel content into the message.
InsertChannelContentIntoMessage(channel_content, assistant_message);
// Push assistant message onto history.
history_.push_back(assistant_message);
// If the assistant message contains channel content, set the checkpoint
// message index to the current message index. This indicates the session
// should be rewound to this message and prefilled again when the next user
// message is sent to the model. The session checkpoint itself was already
// saved right before the model output was decoded.
if (config_.filter_channel_content_from_kv_cache() &&
session_checkpoint_supported_ &&
!checkpoint_message_index_.has_value() &&
std::holds_alternative<nlohmann::ordered_json>(assistant_message) &&
std::get<nlohmann::ordered_json>(assistant_message)
.contains(kChannelsKey)) {
checkpoint_message_index_ = history_.size() - 1;
}
return assistant_message;
}
}
absl::Status Conversation::SendMessageAsync(
const Message& message,
absl::AnyInvocable<void(absl::StatusOr<Message>)> user_callback,
OptionalArgs optional_args) {
if (!std::holds_alternative<nlohmann::ordered_json>(message)) {
return absl::InvalidArgumentError("Json message is required for now.");
}
auto json_message = std::get<nlohmann::ordered_json>(message);
// Session inputs to be prefilled.
std::vector<InputData> session_inputs;
// If the message is a user message, rewind to the checkpoint after the
// previous user message and prefill all assistant messages with channel
// content removed.
if (config_.filter_channel_content_from_kv_cache() &&
session_checkpoint_supported_ && IsUserMessage(json_message)) {
ASSIGN_OR_RETURN(std::vector<InputData> rewound_session_inputs,
RewindAndGetInputDataVector());
session_inputs.insert(
session_inputs.end(),
std::make_move_iterator(rewound_session_inputs.begin()),
std::make_move_iterator(rewound_session_inputs.end()));
}
ASSIGN_OR_RETURN(const std::string& single_turn_text,
GetSingleTurnText(message, optional_args));
{
absl::MutexLock lock(history_mutex_); // NOLINT
if (json_message.is_array()) {
for (const auto& message : json_message) {
history_.push_back(message);
}
} else {
history_.push_back(json_message);
}
}
ASSIGN_OR_RETURN(
auto message_session_inputs,
model_data_processor_->ToInputDataVector(
single_turn_text, nlohmann::ordered_json::array({json_message}),
optional_args.args.value_or(std::monostate())));
session_inputs.insert(session_inputs.end(),
std::make_move_iterator(message_session_inputs.begin()),
std::make_move_iterator(message_session_inputs.end()));
absl::AnyInvocable<void(Message)> complete_message_callback =
[this](const Message& complete_message) {
absl::MutexLock lock(this->history_mutex_); // NOLINT
this->history_.push_back(complete_message);
// If the assistant message contains channel content, set the checkpoint
// message index. This indicates the session should be rewound to this
// message and prefilled again when another user message is sent to the
// model. The session checkpoint itself was already saved right before
// decode.
if (config_.filter_channel_content_from_kv_cache() &&
session_checkpoint_supported_ &&
!checkpoint_message_index_.has_value() &&
std::holds_alternative<nlohmann::ordered_json>(complete_message) &&
std::get<nlohmann::ordered_json>(complete_message)
.contains(kChannelsKey)) {
checkpoint_message_index_ = history_.size() - 1;
}
};
absl::AnyInvocable<void()> cancel_callback = [this]() {
absl::MutexLock lock(this->history_mutex_); // NOLINT
this->history_.pop_back();
};
auto internal_callback =
std::make_shared<absl::AnyInvocable<void(absl::StatusOr<Responses>)>>(
CreateInternalCallback(*model_data_processor_,
optional_args.args.value_or(std::monostate()),
config_.GetChannels(),
std::move(user_callback),
std::move(cancel_callback),
std::move(complete_message_callback)));
ASSIGN_OR_RETURN(
auto decode_config,
CreateDecodeConfig(std::move(optional_args.decoding_constraint),
optional_args.max_output_tokens));
if (is_appending_message_) {
ASSIGN_OR_RETURN(
auto task_controller,
session_->RunPrefillAsync(
session_inputs, [callback = internal_callback](
absl::StatusOr<Responses> responses) mutable {
auto status = IgnoreEmptyInputError(responses.status());
if (!status.ok()) {
(*callback)(responses.status());
}
}));
AddTaskController(optional_args.task_group_id, std::move(task_controller));
} else {
ASSIGN_OR_RETURN(
auto prefill_task_controller,
session_->RunPrefillAsync(
session_inputs, [this, callback = internal_callback, decode_config,
task_group_id = optional_args.task_group_id](
absl::StatusOr<Responses> responses) mutable {
// First, check if prefill returned an error. Ignore errors caused
// by empty input, as this is a valid case for triggering decode
// only.
auto status = IgnoreEmptyInputError(responses.status());
// Scenario 1: Prefill failed with an unexpected error.
if (!status.ok()) {
// If prefill failed, invoke the callback with the error status
// and do not proceed to decode.
(*callback)(responses.status());
} else if (IsEmptyInputError(responses.status()) ||
responses->GetTaskState() == TaskState::kDone) {
// Scenario 2: Prefill was skipped due to empty input, or
// prefill completed successfully. In either case, we can now
// start the decode process.
// Before running decode, save a checkpoint for channel content
// filtering.
if (config_.filter_channel_content_from_kv_cache() &&
session_checkpoint_supported_ &&
!checkpoint_message_index_.has_value()) {
// Save checkpoint in case we need to rewind later.
if (!session_->SaveCheckpoint(kChannelContentCheckpoint)
.ok()) {
session_checkpoint_supported_ = false;
}
}
// Run decode.
auto decode_task_controller = session_->RunDecodeAsync(
[callback](absl::StatusOr<Responses> responses) {
(*callback)(responses);
},
decode_config);
// If RunDecodeAsync returns a task controller, it means the
// decode task was scheduled successfully. Add the controller
// to our map if a task_group_id was provided, so it can be
// cancelled later.
if (decode_task_controller.ok()) {
AddTaskController(task_group_id,
std::move(*decode_task_controller));
} else {
// If !decode_task_controller.ok(), it means
// RunDecodeAsync failed to schedule. Invoke the callback
// with the error status.
(*callback)(decode_task_controller.status());
}
}
}));
AddTaskController(optional_args.task_group_id,
std::move(prefill_task_controller));
}
return absl::OkStatus();
};
absl::StatusOr<Responses> Conversation::RunTextScoring(
const std::vector<absl::string_view>& target_text,
OptionalArgs optional_args) {
ASSIGN_OR_RETURN(std::unique_ptr<Engine::Session> cloned_session,
session_->Clone());
return cloned_session->RunTextScoring(target_text,
/*store_token_lengths=*/true);
}
absl::Status Conversation::RunTextScoringAsync(
const std::vector<absl::string_view>& target_text,
absl::AnyInvocable<void(absl::StatusOr<Responses>)> callback,
OptionalArgs optional_args) {
ASSIGN_OR_RETURN(std::unique_ptr<Engine::Session> cloned_session,
session_->CloneAsync(nullptr));
ASSIGN_OR_RETURN(auto task_controller, cloned_session->RunTextScoringAsync(
target_text, std::move(callback),
/*store_token_lengths=*/true));
AddTaskController(optional_args.task_group_id, std::move(task_controller));
return absl::OkStatus();
}
absl::StatusOr<BenchmarkInfo> Conversation::GetBenchmarkInfo() {
return session_->GetBenchmarkInfo();
}
absl::StatusOr<BenchmarkInfo*> Conversation::GetMutableBenchmarkInfo() {
return session_->GetMutableBenchmarkInfo();
}
void Conversation::CancelProcess() { session_->CancelProcess(); }
void Conversation::CancelGroup(absl::string_view task_group_id) {
absl::MutexLock lock(task_controllers_mutex_);
if (auto it = task_controllers_.find(task_group_id);
it != task_controllers_.end()) {
for (auto& task_controller : it->second) {
if (task_controller != nullptr) {
task_controller->Cancel().IgnoreError();
}
}
task_controllers_.erase(it);
}
}
absl::StatusOr<std::unique_ptr<Conversation>> Conversation::Clone() {
ASSIGN_OR_RETURN(auto session, session_->Clone());
ASSIGN_OR_RETURN(
std::unique_ptr<ModelDataProcessor> model_data_processor,
CreateModelDataProcessor(config_.GetProcessorConfig(),
config_.GetPreface(), &engine_.GetTokenizer(),
session->GetSessionConfig().GetStopTokenIds(),
config_.constrained_decoding_enabled(),
config_.GetPromptTemplate().GetCapabilities()));
auto status = model_data_processor->CloneState(*model_data_processor_);
if (!status.ok() && !absl::IsUnimplemented(status)) {
return status;
}
std::unique_ptr<ConstraintProvider> constraint_provider;
if (config_.constraint_provider_config().has_value()) {
ASSIGN_OR_RETURN(constraint_provider,
CreateConstraintProvider(
config_.constraint_provider_config().value(),
engine_.GetTokenizer(),
session->GetSessionConfig().GetStopTokenIds()));
}
auto new_conversation = absl::WrapUnique(new Conversation(
engine_, std::move(session), std::move(model_data_processor),
config_.GetPreface(), config_.GetPromptTemplate(), config_,
std::move(constraint_provider)));
new_conversation->is_appending_message_ = is_appending_message_;
{
absl::MutexLock lock(history_mutex_); // NOLINT
new_conversation->history_ = history_;
}
return new_conversation;
}
absl::StatusOr<std::string> Conversation::GetPrefillTextForMessages(
absl::Span<const Message> old_messages,
absl::Span<const Message> new_messages, const OptionalArgs& optional_args) {
// Create the template context for the `old` string.
PromptTemplateInput old_context;
old_context.add_generation_prompt = false;
// Fill the `old` template context with the preface.
RETURN_IF_ERROR(FillPrefaceForPromptTemplateInput(
preface_, model_data_processor_.get(), old_context));
// Merge extra context for the message into the extra context provided in the
// preface. Existing keys will be overwritten.
if (optional_args.extra_context.has_value()) {
for (const auto& [key, value] : optional_args.extra_context->items()) {
old_context.extra_context[key] = value;
}
}
// Add old messages to the `old` template context.
for (const auto& message : old_messages) {
if (std::holds_alternative<nlohmann::ordered_json>(message)) {
ASSIGN_OR_RETURN(nlohmann::ordered_json message_tmpl_input,
model_data_processor_->MessageToTemplateInput(
std::get<nlohmann::ordered_json>(message)));
old_context.messages.push_back(message_tmpl_input);
}
}
// Render the `old` string.
std::string old_string;
ASSIGN_OR_RETURN(old_string, prompt_template_.Apply(old_context));
// Copy the `old` template context to the `new` template context.
PromptTemplateInput new_context = old_context;
// Add new messages to the `new` template context.
nlohmann::ordered_json prefill_messages = nlohmann::ordered_json::array();
for (const auto& message : new_messages) {
if (std::holds_alternative<nlohmann::ordered_json>(message)) {
nlohmann::ordered_json json_msg =
std::get<nlohmann::ordered_json>(message);
prefill_messages.push_back(json_msg);
ASSIGN_OR_RETURN(nlohmann::ordered_json message_tmpl_input,
model_data_processor_->MessageToTemplateInput(json_msg));
new_context.messages.push_back(message_tmpl_input);
}
}
// Render the `new` string.
ASSIGN_OR_RETURN(std::string new_string, prompt_template_.Apply(new_context));
if (old_string.length() > new_string.length()) {
return absl::InternalError(
absl::StrCat("The new rendered string is shorter than the previous "
"rendered string. \nold_string: ",
old_string, "\nnew_string: ", new_string));
}
if (new_string.substr(0, old_string.size()) != old_string) {
return absl::InternalError(
absl::StrCat("The new rendered string does not start with the previous "
"rendered string. \nold_string: ",
old_string, "\nnew_string: ", new_string));
}
return new_string.substr(old_string.length());
}
absl::StatusOr<std::vector<InputData>>
Conversation::GetInputDataVectorForMessages(
absl::Span<const Message> old_messages,
absl::Span<const Message> new_messages, const OptionalArgs& optional_args) {
ASSIGN_OR_RETURN(
std::string prefill_text,
GetPrefillTextForMessages(old_messages, new_messages, optional_args));
nlohmann::ordered_json prefill_messages = nlohmann::ordered_json::array();
for (const auto& message : new_messages) {
if (std::holds_alternative<nlohmann::ordered_json>(message)) {
nlohmann::ordered_json json_msg =
std::get<nlohmann::ordered_json>(message);
prefill_messages.push_back(json_msg);
}
}
return model_data_processor_->ToInputDataVector(
prefill_text, prefill_messages,
optional_args.args.value_or(std::monostate()));
}
absl::StatusOr<std::vector<InputData>>
Conversation::RewindAndGetInputDataVector() {
absl::MutexLock lock(history_mutex_);
if (!checkpoint_message_index_.has_value()) {
// If no rewind is needed, return early with empty InputData vector.
return std::vector<InputData>();
}
// Rewind the session to the saved checkpoint.
RETURN_IF_ERROR(session_->RewindToCheckpoint(kChannelContentCheckpoint));
// Get the InputData vector for the messages from the checkpoint onward.
ASSIGN_OR_RETURN(
std::vector<InputData> input_data_vector,
GetInputDataVectorForMessages(
absl::MakeSpan(history_).subspan(0, *checkpoint_message_index_),
absl::MakeSpan(history_).subspan(*checkpoint_message_index_),
OptionalArgs()));
// Clear the checkpoint message index.
checkpoint_message_index_ = std::nullopt;
return input_data_vector;
}
} // namespace litert::lm
|