Spaces:
Running
Running
File size: 39,630 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 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 | // Copyright 2026 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 <deque>
#include <exception>
#include <map>
#include <memory>
#include <optional>
#include <sstream>
#include <stdexcept>
#include <string>
#include <string_view>
#include <utility>
#include <variant>
#include <vector>
#include "nanobind/nanobind.h"
#include "nanobind/stl/optional.h" // IWYU pragma: keep
#include "nanobind/stl/shared_ptr.h" // IWYU pragma: keep
#include "nanobind/stl/string_view.h" // IWYU pragma: keep
#include "nanobind/stl/unique_ptr.h" // IWYU pragma: keep
#include "nanobind/stl/variant.h" // IWYU pragma: keep
#include "nanobind/stl/vector.h" // IWYU pragma: keep
#include "absl/base/log_severity.h" // from @com_google_absl
#include "absl/base/thread_annotations.h" // from @com_google_absl
#include "absl/functional/any_invocable.h" // from @com_google_absl
#include "absl/log/globals.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/string_view.h" // from @com_google_absl
#include "absl/synchronization/mutex.h" // from @com_google_absl
#include "absl/time/time.h" // from @com_google_absl
#include "nlohmann/json_fwd.hpp" // from @nlohmann_json
#include "nanobind_json/nanobind_json.hpp" // from @nanobind_json // IWYU pragma: keep
#include "litert/c/internal/litert_logging.h" // from @litert
#include "runtime/components/tokenizer.h"
#include "runtime/conversation/conversation.h"
#include "runtime/conversation/io_types.h"
#include "runtime/engine/engine.h"
#include "runtime/engine/engine_factory.h"
#include "runtime/engine/engine_settings.h"
#include "runtime/engine/io_types.h"
#include "runtime/executor/executor_settings_base.h"
#include "runtime/executor/llm_executor_settings.h"
#include "runtime/proto/token.pb.h"
#include "tflite/logger.h" // from @litert
#include "tflite/minimal_logging.h" // from @litert
#define VALUE_OR_THROW(status_or) \
([&]() { \
auto status_or_value = (status_or); \
if (!status_or_value.ok()) { \
std::stringstream ss; \
ss << __FILE__ << ":" << __LINE__ << ": " << __func__ << ": " \
<< status_or_value.status(); \
throw std::runtime_error(ss.str()); \
} \
return std::move(status_or_value).value(); \
}())
#define STATUS_OR_THROW(status) \
{ \
auto status_value = (status); \
if (!status_value.ok()) { \
std::stringstream ss; \
ss << __FILE__ << ":" << __LINE__ << ": " << __func__ << ": " \
<< status_value; \
throw std::runtime_error(ss.str()); \
} \
}
namespace litert::lm {
namespace nb = nanobind;
// The maximum number of times the model can call tools in a single turn before
// an error is thrown.
constexpr int kRecurringToolCallLimit = 25;
// Helper to convert Python dict or str to JSON message.
nlohmann::json ParseJsonMessage(const nb::handle& message) {
if (nb::isinstance<nb::dict>(message)) {
return nb::cast<nb::dict>(message);
}
if (nb::isinstance<nb::str>(message)) {
return {{"role", "user"}, {"content", nb::cast<std::string>(message)}};
}
throw std::runtime_error("Message must be a dict or a str.");
}
// Helper to extract C++ Backend from Python Backend enum.
Backend ParseBackend(const nb::handle& handle,
Backend default_val = Backend::CPU) {
if (handle.is_none()) return default_val;
return static_cast<Backend>(nb::cast<int>(nb::object(handle.attr("value"))));
}
// Helper to handle tool calls.
nlohmann::json HandleToolCalls(const nlohmann::json& response,
const nb::dict& tool_map,
const nb::object& tool_event_handler) {
nlohmann::json tool_responses = nlohmann::json::array();
for (const auto& tool_call : response["tool_calls"]) {
if (!tool_call.contains("function")) continue;
std::string name = tool_call["function"]["name"];
nlohmann::json arguments = tool_call["function"]["arguments"];
if (!tool_event_handler.is_none()) {
bool allowed = nb::cast<bool>(
tool_event_handler.attr("approve_tool_call")(nb::cast(tool_call)));
if (!allowed) {
tool_responses.push_back({
{"type", "tool_response"},
{"name", name},
{"response", "Error: Tool call disallowed by user."},
});
continue;
}
}
nlohmann::json json_result;
if (tool_map.contains(name.c_str())) {
nb::object tool_obj = tool_map[name.c_str()];
nb::object py_args = nb::cast(arguments);
try {
nb::object py_result = tool_obj.attr("execute")(py_args);
json_result = nb::cast<nlohmann::json>(py_result);
} catch (const std::exception& e) {
json_result = "Error executing tool: " + std::string(e.what());
}
} else {
json_result = "Error: Tool not found.";
}
nlohmann::json tool_response_json = {
{"name", name},
{"response", json_result},
};
if (!tool_event_handler.is_none()) {
nb::object py_modified_response = tool_event_handler.attr(
"process_tool_response")(nb::cast(tool_response_json));
tool_response_json = nb::cast<nlohmann::json>(py_modified_response);
}
tool_responses.push_back({
{"type", "tool_response"},
{"name", name},
{"response", json_result},
});
}
return {{"role", "tool"}, {"content", tool_responses}};
}
// Helper to inject Python backend attribute.
void SetBackendAttr(nb::object& py_engine, const nb::handle& backend_handle) {
if (backend_handle.is_none()) {
py_engine.attr("backend") =
nb::module_::import_(
"litert_lm.interfaces")
.attr("Backend")
.attr("CPU");
} else {
py_engine.attr("backend") = backend_handle;
}
}
std::vector<int> Tokenize(const Engine& engine, std::string_view text) {
Tokenizer& tokenizer = const_cast<Tokenizer&>(engine.GetTokenizer());
return VALUE_OR_THROW(tokenizer.TextToTokenIds(text));
}
std::string Detokenize(const Engine& engine,
const std::vector<int>& token_ids) {
Tokenizer& tokenizer = const_cast<Tokenizer&>(engine.GetTokenizer());
return VALUE_OR_THROW(tokenizer.TokenIdsToText(token_ids));
}
std::optional<int> GetBosTokenId(const Engine& engine) {
const auto& metadata = engine.GetEngineSettings().GetLlmMetadata();
if (!metadata.has_value() || !metadata->has_start_token() ||
!metadata->start_token().has_token_ids() ||
metadata->start_token().token_ids().ids_size() == 0) {
return std::nullopt;
}
return metadata->start_token().token_ids().ids(0);
}
// This function is only called once per model during initialization, not per
// sample. So the performance is not important.
std::vector<std::vector<int>> GetEosTokenIds(const Engine& engine) {
std::vector<std::vector<int>> stop_token_ids;
const auto& metadata = engine.GetEngineSettings().GetLlmMetadata();
if (!metadata.has_value()) {
return stop_token_ids;
}
stop_token_ids.reserve(metadata->stop_tokens_size());
for (const auto& stop_token : metadata->stop_tokens()) {
if (!stop_token.has_token_ids()) {
continue;
}
stop_token_ids.emplace_back(stop_token.token_ids().ids().begin(),
stop_token.token_ids().ids().end());
}
return stop_token_ids;
}
// Helper to convert C++ Responses to Python Responses dataclass.
nb::object ToPyResponses(const Responses& responses) {
nb::object py_responses_class =
nb::module_::import_(
"litert_lm.interfaces")
.attr("Responses");
auto texts = responses.GetTexts().empty() ? std::vector<std::string>()
: responses.GetTexts();
auto scores = responses.GetScores();
auto token_lengths = responses.GetTokenLengths().value_or(std::vector<int>());
return py_responses_class(texts, scores, token_lengths);
}
// Note: Consider move to C++ API.
enum class LogSeverity {
kVerbose = 0,
kDebug = 1,
kInfo = 2,
kWarning = 3,
kError = 4,
kFatal = 5,
kSilent = 1000,
};
// MessageIterator bridges the asynchronous, callback-based C++ API
// (Conversation::SendMessageAsync) to Python's synchronous iterator protocol
// (__iter__ / __next__).
//
// It provides a thread-safe queue where the background C++ inference thread
// pushes generated message chunks. The Python main thread can then safely
// pull these chunks one by one by iterating over this object.
//
// This design keeps the C++ background thread completely free from Python's
// Global Interpreter Lock (GIL), maximizing concurrency and preventing
// deadlocks.
class MessageIterator {
public:
MessageIterator() = default;
MessageIterator(const MessageIterator&) = delete;
MessageIterator& operator=(const MessageIterator&) = delete;
void Push(absl::StatusOr<Message> message) {
absl::MutexLock lock(mutex_);
queue_.push_back(std::move(message));
}
nlohmann::json Next() {
absl::StatusOr<Message> message;
{
nb::gil_scoped_release release;
absl::MutexLock lock(mutex_);
mutex_.Await(absl::Condition(this, &MessageIterator::HasData));
message = std::move(queue_.front());
queue_.pop_front();
}
if (!message.ok()) {
if (absl::IsCancelled(message.status())) {
throw nb::stop_iteration();
}
throw std::runtime_error(message.status().ToString());
}
if (!std::holds_alternative<JsonMessage>(*message)) {
throw std::runtime_error(
"SendMessageAsync did not return a JsonMessage.");
}
auto& json_msg = std::get<JsonMessage>(*message);
if (json_msg.empty()) {
throw nb::stop_iteration();
}
return static_cast<nlohmann::json>(json_msg);
}
bool HasData() const ABSL_EXCLUSIVE_LOCKS_REQUIRED(mutex_) {
return !queue_.empty();
}
private:
absl::Mutex mutex_;
std::deque<absl::StatusOr<Message>> queue_ ABSL_GUARDED_BY(mutex_);
};
// ResponsesIterator bridges the asynchronous, callback-based C++ API
// (Engine::Session::RunDecodeAsync) to Python's synchronous iterator protocol
// (__iter__ / __next__).
class ResponsesIterator {
public:
ResponsesIterator() = default;
ResponsesIterator(const ResponsesIterator&) = delete;
ResponsesIterator& operator=(const ResponsesIterator&) = delete;
void Push(absl::StatusOr<Responses> responses) {
absl::MutexLock lock(mutex_);
queue_.push_back(std::move(responses));
}
void SetTaskController(
std::unique_ptr<Engine::Session::TaskController> controller) {
absl::MutexLock lock(mutex_);
controller_ = std::move(controller);
}
nb::object Next() {
absl::StatusOr<Responses> responses;
{
nb::gil_scoped_release release;
absl::MutexLock lock(mutex_);
mutex_.Await(absl::Condition(this, &ResponsesIterator::HasData));
responses = std::move(queue_.front());
queue_.pop_front();
}
if (!responses.ok()) {
if (absl::IsCancelled(responses.status())) {
throw nb::stop_iteration();
}
throw std::runtime_error(responses.status().ToString());
}
if (responses->GetTexts().empty()) {
throw nb::stop_iteration();
}
return ToPyResponses(*responses);
}
bool HasData() const ABSL_EXCLUSIVE_LOCKS_REQUIRED(mutex_) {
return !queue_.empty();
}
private:
absl::Mutex mutex_;
std::deque<absl::StatusOr<Responses>> queue_ ABSL_GUARDED_BY(mutex_);
std::unique_ptr<Engine::Session::TaskController> controller_
ABSL_GUARDED_BY(mutex_);
};
struct PyBenchmarkInfo {
double init_time_in_second;
double time_to_first_token_in_second;
int last_prefill_token_count;
double last_prefill_tokens_per_second;
int last_decode_token_count;
double last_decode_tokens_per_second;
};
class Benchmark {
public:
Benchmark(std::string model_path, Backend backend, int prefill_tokens,
int decode_tokens, std::string cache_dir,
std::optional<bool> enable_speculative_decoding)
: model_path_(std::move(model_path)),
backend_(backend),
prefill_tokens_(prefill_tokens),
decode_tokens_(decode_tokens),
cache_dir_(std::move(cache_dir)),
enable_speculative_decoding_(enable_speculative_decoding) {}
PyBenchmarkInfo Run() {
auto model_assets = VALUE_OR_THROW(ModelAssets::Create(model_path_));
auto settings =
VALUE_OR_THROW(EngineSettings::CreateDefault(model_assets, backend_));
if (!cache_dir_.empty()) {
settings.GetMutableMainExecutorSettings().SetCacheDir(cache_dir_);
}
if (enable_speculative_decoding_.has_value()) {
AdvancedSettings advanced_settings;
if (settings.GetMutableMainExecutorSettings()
.GetAdvancedSettings()
.has_value()) {
advanced_settings =
*settings.GetMutableMainExecutorSettings().GetAdvancedSettings();
}
advanced_settings.enable_speculative_decoding =
*enable_speculative_decoding_;
settings.GetMutableMainExecutorSettings().SetAdvancedSettings(
advanced_settings);
}
auto& benchmark_params = settings.GetMutableBenchmarkParams();
benchmark_params.set_num_prefill_tokens(prefill_tokens_);
benchmark_params.set_num_decode_tokens(decode_tokens_);
auto engine =
VALUE_OR_THROW(EngineFactory::CreateDefault(std::move(settings)));
auto conversation_config =
VALUE_OR_THROW(ConversationConfig::CreateDefault(*engine));
auto conversation =
VALUE_OR_THROW(Conversation::Create(*engine, conversation_config));
// Trigger benchmark
nlohmann::json dummy_message = {
{"role", "user"},
{"content", "Engine ignore this message in this mode."}};
(void)VALUE_OR_THROW(conversation->SendMessage(dummy_message));
auto benchmark_info_cpp = VALUE_OR_THROW(conversation->GetBenchmarkInfo());
PyBenchmarkInfo result;
double total_init_time_ms = 0.0;
for (const auto& phase : benchmark_info_cpp.GetInitPhases()) {
total_init_time_ms += absl::ToDoubleMilliseconds(phase.second);
}
result.init_time_in_second = total_init_time_ms / 1000.0;
result.time_to_first_token_in_second =
benchmark_info_cpp.GetTimeToFirstToken();
int last_prefill_token_count = 0;
double last_prefill_tokens_per_second = 0.0;
if (benchmark_info_cpp.GetTotalPrefillTurns() > 0) {
int last_index =
static_cast<int>(benchmark_info_cpp.GetTotalPrefillTurns()) - 1;
auto turn = benchmark_info_cpp.GetPrefillTurn(last_index);
if (turn.ok()) {
last_prefill_token_count = static_cast<int>(turn->num_tokens);
}
last_prefill_tokens_per_second =
benchmark_info_cpp.GetPrefillTokensPerSec(last_index);
}
result.last_prefill_token_count = last_prefill_token_count;
result.last_prefill_tokens_per_second = last_prefill_tokens_per_second;
int last_decode_token_count = 0;
double last_decode_tokens_per_second = 0.0;
if (benchmark_info_cpp.GetTotalDecodeTurns() > 0) {
int last_index =
static_cast<int>(benchmark_info_cpp.GetTotalDecodeTurns()) - 1;
auto turn = benchmark_info_cpp.GetDecodeTurn(last_index);
if (turn.ok()) {
last_decode_token_count = static_cast<int>(turn->num_tokens);
}
last_decode_tokens_per_second =
benchmark_info_cpp.GetDecodeTokensPerSec(last_index);
}
result.last_decode_token_count = last_decode_token_count;
result.last_decode_tokens_per_second = last_decode_tokens_per_second;
return result;
}
private:
// Path to the model file.
std::string model_path_;
// Hardware backend used for inference.
Backend backend_;
// Number of tokens for the prefill phase.
int prefill_tokens_;
// Number of tokens for the decode phase.
int decode_tokens_;
// Directory for caching compiled model artifacts.
std::string cache_dir_;
// Speculative decoding mode.
std::optional<bool> enable_speculative_decoding_;
};
NB_MODULE(litert_lm_ext, module) {
nb::enum_<LogSeverity>(module, "LogSeverity")
.value("VERBOSE", LogSeverity::kVerbose)
.value("DEBUG", LogSeverity::kDebug)
.value("INFO", LogSeverity::kInfo)
.value("WARNING", LogSeverity::kWarning)
.value("ERROR", LogSeverity::kError)
.value("FATAL", LogSeverity::kFatal)
.value("SILENT", LogSeverity::kSilent)
.export_values();
module.def(
"Engine",
[](std::string_view model_path, const nb::handle& backend,
int max_num_tokens, std::string_view cache_dir,
const nb::handle& vision_backend, const nb::handle& audio_backend,
std::string_view input_prompt_as_hint,
std::optional<bool> enable_speculative_decoding) {
Backend main_backend = ParseBackend(backend);
std::optional<Backend> vision_backend_opt = std::nullopt;
if (!vision_backend.is_none()) {
vision_backend_opt = ParseBackend(vision_backend);
}
std::optional<Backend> audio_backend_opt = std::nullopt;
if (!audio_backend.is_none()) {
audio_backend_opt = ParseBackend(audio_backend);
}
auto model_assets = VALUE_OR_THROW(ModelAssets::Create(model_path));
auto settings = VALUE_OR_THROW(EngineSettings::CreateDefault(
model_assets, main_backend, vision_backend_opt, audio_backend_opt));
settings.GetMutableMainExecutorSettings().SetMaxNumTokens(
max_num_tokens);
if (!cache_dir.empty()) {
settings.GetMutableMainExecutorSettings().SetCacheDir(
std::string(cache_dir));
}
if (enable_speculative_decoding.has_value()) {
AdvancedSettings advanced_settings;
if (settings.GetMutableMainExecutorSettings()
.GetAdvancedSettings()
.has_value()) {
advanced_settings = *settings.GetMutableMainExecutorSettings()
.GetAdvancedSettings();
}
advanced_settings.enable_speculative_decoding =
*enable_speculative_decoding;
settings.GetMutableMainExecutorSettings().SetAdvancedSettings(
advanced_settings);
}
auto engine = VALUE_OR_THROW(
EngineFactory::CreateDefault(settings, input_prompt_as_hint));
nb::object py_engine = nb::cast(std::move(engine));
py_engine.attr("model_path") = model_path;
SetBackendAttr(py_engine, backend);
py_engine.attr("max_num_tokens") = max_num_tokens;
py_engine.attr("cache_dir") = cache_dir;
py_engine.attr("vision_backend") = vision_backend;
py_engine.attr("audio_backend") = audio_backend;
py_engine.attr("enable_speculative_decoding") =
enable_speculative_decoding;
return py_engine;
},
nb::arg("model_path"), nb::arg("backend") = nb::none(),
nb::arg("max_num_tokens") = 4096, nb::arg("cache_dir") = "",
nb::arg("vision_backend") = nb::none(),
nb::arg("audio_backend") = nb::none(),
nb::arg("input_prompt_as_hint") = "",
nb::arg("enable_speculative_decoding") = nb::none());
module.def(
"set_min_log_severity",
[](LogSeverity log_severity) {
struct SeverityMapping {
absl::LogSeverityAtLeast absl_severity;
LiteRtLogSeverity litert_severity;
tflite::LogSeverity tflite_severity;
};
static const std::map<LogSeverity, SeverityMapping> mapping = {
{LogSeverity::kVerbose,
{absl::LogSeverityAtLeast::kInfo, kLiteRtLogSeverityVerbose,
tflite::TFLITE_LOG_VERBOSE}},
{LogSeverity::kDebug,
{absl::LogSeverityAtLeast::kInfo, kLiteRtLogSeverityDebug,
tflite::TFLITE_LOG_VERBOSE}},
{LogSeverity::kInfo,
{absl::LogSeverityAtLeast::kInfo, kLiteRtLogSeverityInfo,
tflite::TFLITE_LOG_INFO}},
{LogSeverity::kWarning,
{absl::LogSeverityAtLeast::kWarning, kLiteRtLogSeverityWarning,
tflite::TFLITE_LOG_WARNING}},
{LogSeverity::kError,
{absl::LogSeverityAtLeast::kError, kLiteRtLogSeverityError,
tflite::TFLITE_LOG_ERROR}},
{LogSeverity::kFatal,
{absl::LogSeverityAtLeast::kFatal, kLiteRtLogSeverityError,
tflite::TFLITE_LOG_ERROR}},
{LogSeverity::kSilent,
{absl::LogSeverityAtLeast::kInfinity, kLiteRtLogSeveritySilent,
tflite::TFLITE_LOG_SILENT}},
};
auto mapping_it = mapping.find(log_severity);
const SeverityMapping& severity_mapping =
(mapping_it != mapping.end()) ? mapping_it->second
: mapping.at(LogSeverity::kSilent);
absl::SetMinLogLevel(severity_mapping.absl_severity);
absl::SetStderrThreshold(severity_mapping.absl_severity);
LiteRtSetMinLoggerSeverity(LiteRtGetDefaultLogger(),
severity_mapping.litert_severity);
tflite::logging_internal::MinimalLogger::SetMinimumLogSeverity(
severity_mapping.tflite_severity);
},
nb::arg("log_severity"));
nb::class_<Engine>(module, "_Engine", nb::dynamic_attr())
// Support for Python context managers (with statement).
// __enter__ returns the object itself.
.def("__enter__", [](nb::handle self) { return self; })
// __exit__ immediately destroys the underlying C++ instance to free
// resources deterministically, instead of waiting for garbage collection.
.def(
"__exit__",
[](nb::handle self, nb::handle exc_type, nb::handle exc_value,
nb::handle traceback) { nb::inst_destruct(self); },
nb::arg("exc_type").none(), nb::arg("exc_value").none(),
nb::arg("traceback").none())
.def(
"create_conversation",
[](const nb::object& self, const nb::handle& messages,
const nb::handle& tools, const nb::handle& tool_event_handler,
const nb::handle& extra_context) {
Engine& engine = nb::cast<Engine&>(self);
auto builder = ConversationConfig::Builder();
nb::dict py_tool_map;
bool has_preface = false;
JsonPreface json_preface;
if (!messages.is_none()) {
json_preface.messages = nb::cast<nlohmann::json>(messages);
has_preface = true;
}
if (!tools.is_none()) {
nb::object tool_from_function =
nb::module_::import_(
"litert_lm."
"tools")
.attr("tool_from_function");
nlohmann::json json_tools = nlohmann::json::array();
for (auto tool : nb::cast<nb::list>(tools)) {
auto tool_obj = tool_from_function(tool);
auto description = tool_obj.attr("get_tool_description")();
std::string name =
nb::cast<std::string>(description["function"]["name"]);
py_tool_map[name.c_str()] = tool_obj;
json_tools.push_back(nb::cast<nlohmann::json>(description));
}
json_preface.tools = std::move(json_tools);
has_preface = true;
}
if (!extra_context.is_none()) {
json_preface.extra_context =
nb::cast<nlohmann::json>(extra_context);
has_preface = true;
}
if (has_preface) {
builder.SetPreface(json_preface);
}
auto config = VALUE_OR_THROW(builder.Build(engine));
auto conversation =
VALUE_OR_THROW(Conversation::Create(engine, config));
nb::object py_conversation = nb::cast(std::move(conversation));
py_conversation.attr("_tool_map") = py_tool_map;
py_conversation.attr("tool_event_handler") = tool_event_handler;
py_conversation.attr("extra_context") = extra_context;
if (messages.is_none()) {
py_conversation.attr("messages") = nb::list();
} else {
py_conversation.attr("messages") = messages;
}
if (tools.is_none()) {
py_conversation.attr("tools") = nb::list();
} else {
py_conversation.attr("tools") = tools;
}
return py_conversation;
},
nb::kw_only(), nb::arg("messages") = nb::none(),
nb::arg("tools") = nb::none(),
nb::arg("tool_event_handler") = nb::none(),
nb::arg("extra_context") = nb::none())
.def(
"create_session",
[](Engine& self, bool apply_prompt_template) {
auto session_config = SessionConfig::CreateDefault();
session_config.SetApplyPromptTemplateInSession(
apply_prompt_template);
return VALUE_OR_THROW(self.CreateSession(session_config));
},
nb::kw_only(), nb::arg("apply_prompt_template") = true,
"Creates a new session for this engine.")
.def("tokenize", &Tokenize, nb::arg("text"),
"Tokenizes text using the engine's tokenizer.")
.def("detokenize", &Detokenize, nb::arg("token_ids"),
"Decodes token ids using the engine's tokenizer.")
.def_prop_ro("bos_token_id", &GetBosTokenId,
"Returns the configured BOS token id, if any.")
.def_prop_ro("eos_token_ids", &GetEosTokenIds,
"Returns the configured EOS/stop token sequences.");
nb::class_<Engine::Session>(module, "Session", nb::dynamic_attr(),
"Session is responsible for hosting the "
"internal state (e.g. conversation history) of "
"each separate interaction with LLM.")
// Support for Python context managers (with statement).
// __enter__ returns the object itself.
.def("__enter__", [](nb::handle self) { return self; })
// __exit__ immediately destroys the underlying C++ instance to free
// resources deterministically, instead of waiting for garbage collection.
.def(
"__exit__",
[](nb::handle self, nb::handle exc_type, nb::handle exc_value,
nb::handle traceback) { nb::inst_destruct(self); },
nb::arg("exc_type").none(), nb::arg("exc_value").none(),
nb::arg("traceback").none())
.def(
"run_prefill",
[](Engine::Session& self, const std::vector<std::string>& contents) {
std::vector<InputData> input_data;
input_data.reserve(contents.size());
for (const auto& text : contents) {
input_data.emplace_back(InputText(text));
}
STATUS_OR_THROW(self.RunPrefill(input_data));
},
nb::arg("contents"),
"Adds the input prompt/query to the model for starting the "
"prefilling process. Note that the user can break down their "
"prompt/query into multiple chunks and call this function multiple "
"times.")
.def(
"run_decode",
[](Engine::Session& self) {
return ToPyResponses(VALUE_OR_THROW(self.RunDecode()));
},
"Starts the decoding process for the model to predict the response "
"based on the input prompt/query added after using run_prefill "
"function.")
.def(
"run_decode_async",
[](Engine::Session& self) {
auto iterator = std::make_shared<ResponsesIterator>();
absl::AnyInvocable<void(absl::StatusOr<Responses>)> callback =
[iterator](absl::StatusOr<Responses> responses) {
iterator->Push(std::move(responses));
};
auto task_controller_or = self.RunDecodeAsync(std::move(callback));
STATUS_OR_THROW(task_controller_or.status());
iterator->SetTaskController(std::move(*task_controller_or));
return iterator;
},
"Starts the decoding process asynchronously.")
.def(
"run_text_scoring",
[](Engine::Session& self, const std::vector<std::string>& target_text,
bool store_token_lengths) {
std::vector<absl::string_view> target_text_views;
target_text_views.reserve(target_text.size());
for (const auto& text : target_text) {
target_text_views.push_back(text);
}
return ToPyResponses(VALUE_OR_THROW(
self.RunTextScoring(target_text_views, store_token_lengths)));
},
nb::arg("target_text"), nb::arg("store_token_lengths") = false,
"Scores the target text after the prefill process is done.")
.def("cancel_process", &Engine::Session::CancelProcess,
"Cancels the ongoing inference process.");
nb::class_<Conversation>(module, "Conversation", nb::dynamic_attr())
// Support for Python context managers (with statement).
// __enter__ returns the object itself.
.def("__enter__", [](nb::handle self) { return self; })
// __exit__ immediately destroys the underlying C++ instance to free
// resources deterministically, instead of waiting for garbage collection.
.def(
"__exit__",
[](nb::handle self, nb::handle exc_type, nb::handle exc_value,
nb::handle traceback) { nb::inst_destruct(self); },
nb::arg("exc_type").none(), nb::arg("exc_value").none(),
nb::arg("traceback").none())
.def("cancel_process", &Conversation::CancelProcess)
.def(
"send_message",
[](nb::object self, const nb::handle& message) {
Conversation& conversation = nb::cast<Conversation&>(self);
nlohmann::json current_message = ParseJsonMessage(message);
nb::dict tool_map;
if (nb::hasattr(self, "_tool_map")) {
tool_map = nb::cast<nb::dict>(self.attr("_tool_map"));
}
nb::object tool_event_handler = nb::none();
if (nb::hasattr(self, "tool_event_handler")) {
tool_event_handler = self.attr("tool_event_handler");
}
for (int i = 0; i < kRecurringToolCallLimit; ++i) {
absl::StatusOr<Message> result =
conversation.SendMessage(current_message);
Message message_variant = VALUE_OR_THROW(std::move(result));
if (!std::holds_alternative<JsonMessage>(message_variant)) {
throw std::runtime_error(
"SendMessage did not return a JsonMessage.");
}
nlohmann::json response = std::get<JsonMessage>(message_variant);
if (response.contains("tool_calls") &&
!response["tool_calls"].empty()) {
current_message =
HandleToolCalls(response, tool_map, tool_event_handler);
} else {
return response;
}
}
throw std::runtime_error("Exceeded recurring tool call limit of " +
std::to_string(kRecurringToolCallLimit));
},
nb::arg("message"))
.def(
"send_message_async",
[](nb::object self, const nb::handle& message) {
Conversation& conversation = nb::cast<Conversation&>(self);
nlohmann::json json_message = ParseJsonMessage(message);
auto iterator = std::make_shared<MessageIterator>();
nb::dict tool_map;
if (nb::hasattr(self, "_tool_map")) {
tool_map = nb::cast<nb::dict>(self.attr("_tool_map"));
}
nb::object tool_event_handler = nb::none();
if (nb::hasattr(self, "tool_event_handler")) {
tool_event_handler = self.attr("tool_event_handler");
}
struct AsyncState {
int tool_call_count = 0;
nlohmann::json pending_tool_response = nullptr;
};
auto state = std::make_shared<AsyncState>();
struct Callback {
nb::object self;
std::shared_ptr<MessageIterator> iterator;
nb::dict tool_map;
nb::object tool_event_handler;
std::shared_ptr<AsyncState> state;
void operator()(absl::StatusOr<Message> message) const {
if (!message.ok()) {
iterator->Push(std::move(message));
return;
}
if (!std::holds_alternative<JsonMessage>(*message)) {
iterator->Push(absl::InternalError(
"SendMessageAsync did not return a JsonMessage."));
return;
}
auto& json_msg = std::get<JsonMessage>(*message);
if (json_msg.contains("tool_calls") &&
!json_msg["tool_calls"].empty()) {
nb::gil_scoped_acquire acquire;
state->pending_tool_response =
HandleToolCalls(json_msg, tool_map, tool_event_handler);
}
if (json_msg.contains("content") ||
json_msg.contains("channels")) {
iterator->Push(std::move(message));
} else if (json_msg.empty()) {
if (state->pending_tool_response != nullptr) {
if (state->tool_call_count >= kRecurringToolCallLimit) {
iterator->Push(absl::InternalError(
"Exceeded recurring tool call limit of " +
std::to_string(kRecurringToolCallLimit)));
return;
}
state->tool_call_count++;
nlohmann::json next_message =
std::move(state->pending_tool_response);
state->pending_tool_response = nullptr;
nb::gil_scoped_acquire acquire;
Conversation& conv = nb::cast<Conversation&>(self);
absl::Status status =
conv.SendMessageAsync(next_message, *this);
if (!status.ok()) {
iterator->Push(status);
}
} else {
iterator->Push(std::move(message));
}
}
}
};
absl::Status status = conversation.SendMessageAsync(
json_message,
Callback{self, iterator, tool_map, tool_event_handler, state});
if (!status.ok()) {
std::stringstream error_msg_stream;
error_msg_stream << "SendMessageAsync failed: " << status;
throw std::runtime_error(error_msg_stream.str());
}
return iterator;
},
nb::arg("message"));
// Expose the MessageIterator to Python so that it can be used in a
// standard `for chunk in stream:` loop. We bind Python's iterator protocol
// (__iter__ and __next__) to our C++ implementation.
nb::class_<MessageIterator>(module, "MessageIterator")
.def("__iter__", [](nb::handle self) { return self; })
.def("__next__", &MessageIterator::Next);
nb::class_<ResponsesIterator>(module, "ResponsesIterator")
.def("__iter__", [](nb::handle self) { return self; })
.def("__next__", &ResponsesIterator::Next);
module.def(
"Benchmark",
[](std::string_view model_path, const nb::handle& backend,
int prefill_tokens, int decode_tokens, std::string_view cache_dir,
std::optional<bool> enable_speculative_decoding) {
auto benchmark = std::make_unique<Benchmark>(
std::string(model_path), ParseBackend(backend), prefill_tokens,
decode_tokens, std::string(cache_dir), enable_speculative_decoding);
nb::object py_benchmark = nb::cast(std::move(benchmark));
py_benchmark.attr("model_path") = model_path;
SetBackendAttr(py_benchmark, backend);
py_benchmark.attr("prefill_tokens") = prefill_tokens;
py_benchmark.attr("decode_tokens") = decode_tokens;
py_benchmark.attr("cache_dir") = cache_dir;
py_benchmark.attr("enable_speculative_decoding") =
enable_speculative_decoding;
return py_benchmark;
},
nb::arg("model_path"), nb::arg("backend") = nb::none(),
nb::arg("prefill_tokens") = 256, nb::arg("decode_tokens") = 256,
nb::arg("cache_dir") = "",
nb::arg("enable_speculative_decoding") = nb::none());
nb::class_<PyBenchmarkInfo>(module, "BenchmarkInfo",
"Data class to hold benchmark information.")
.def_rw("init_time_in_second", &PyBenchmarkInfo::init_time_in_second,
"The time in seconds to initialize the engine and the "
"conversation.")
.def_rw("time_to_first_token_in_second",
&PyBenchmarkInfo::time_to_first_token_in_second,
"The time in seconds to the first token.")
.def_rw(
"last_prefill_token_count",
&PyBenchmarkInfo::last_prefill_token_count,
"The number of tokens in the last prefill. Returns 0 if there was "
"no prefill.")
.def_rw("last_prefill_tokens_per_second",
&PyBenchmarkInfo::last_prefill_tokens_per_second,
"The number of tokens processed per second in the last prefill.")
.def_rw("last_decode_token_count",
&PyBenchmarkInfo::last_decode_token_count,
"The number of tokens in the last decode. Returns 0 if there was "
"no decode.")
.def_rw("last_decode_tokens_per_second",
&PyBenchmarkInfo::last_decode_tokens_per_second,
"The number of tokens processed per second in the last decode.");
nb::class_<Benchmark>(module, "_Benchmark", nb::dynamic_attr())
.def("run", &Benchmark::Run);
}
} // namespace litert::lm
|