From 6f27bf19d754f1dee85bbc4704e1287f35b2ee4e Mon Sep 17 00:00:00 2001 From: Angel-HF <49835792+Pelochus@users.noreply.github.com> Date: Sun, 14 Apr 2024 13:44:16 +0200 Subject: [PATCH] Minor fixes --- rkllm-runtime/example/src/main.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/rkllm-runtime/example/src/main.cpp b/rkllm-runtime/example/src/main.cpp index a52fa8a..dd0d742 100644 --- a/rkllm-runtime/example/src/main.cpp +++ b/rkllm-runtime/example/src/main.cpp @@ -83,10 +83,11 @@ int main(int argc, char **argv) printf("RKLLM init success!\n"); vector pre_input; - pre_input.push_back("Welcome to ezrkllm! This is an adaptation of Rockchip's rknn-llm repo (see github.com/airockchip/rknn-llm) for running LLMs on its SoCs' NPUs."); - pre_input.push_back("You are currently running the runtime for " + param.target_platform); - pre_input.push_back("More information here: https://github.com/Pelochus/ezrknpu"); - pre_input.push_back("Detailed information for devs here: https://github.com/Pelochus/ezrknn-llm"); + pre_input.push_back("Welcome to ezrkllm! This is an adaptation of Rockchip's rknn-llm repo (see github.com/airockchip/rknn-llm) for running LLMs on its SoCs' NPUs. \n"); + pre_input.push_back("You are currently running the runtime for "); + pre_input.push_back(param.target_platform); + pre_input.push_back("\nMore information here: https://github.com/Pelochus/ezrknpu"); + pre_input.push_back("\nDetailed information for devs here: https://github.com/Pelochus/ezrknn-llm"); cout << "\n************************ Pelochus' ezrkllm runtime **********************\n" << endl;