Skip to content

Commit c82bc19

Browse files
committed
onnx lp fixes
1 parent 6d68715 commit c82bc19

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

content/learning-paths/servers-and-cloud-computing/onnx/_demo.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,6 @@ terms_and_conditions: demo-terms-and-conditions.txt
2424

2525
prismjs: true # enable prismjs rendering of code snippets
2626

27-
example_user_prompts:
28-
- Prompt 1?
29-
- Prompt 2?
30-
3127

3228
rag_data_cutoff_date: 2025/01/17
3329

content/learning-paths/servers-and-cloud-computing/onnx/setup.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ Clone and build the `onnxruntime-genai` repository:
9393
cd ~
9494
cp ./onnxruntime/build/Linux/Release/install/include/onnxruntime/onnxruntime_float16.h ./onnxruntime/build/Linux/Release/install/include/onnxruntime_float16.h
9595
cp ./onnxruntime/build/Linux/Release/install/include/onnxruntime/onnxruntime_c_api.h ./onnxruntime/build/Linux/Release/install/include/onnxruntime_c_api.h
96+
cp ./onnxruntime/build/Linux/Release/install/include/onnxruntime/onnxruntime_ep_c_api.h ./onnxruntime/build/Linux/Release/install/include/onnxruntime_ep_c_api.h
9697
git clone https://github.com/microsoft/onnxruntime-genai.git
9798
cd onnxruntime-genai
9899
python3 build.py --config Release --update --ort_home ../onnxruntime/build/Linux/Release/install

themes/arm-design-system-hugo-theme/layouts/partials/demo-components/llm-chatbot/javascript--llm-chatbot.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -678,17 +678,17 @@
678678

679679
// Update ping & popup status
680680
if (data.cluster_utilization == 'normal') {
681-
showPopupPostConnection('Connected to Arm Neoverse V2 based LLM! Start chatting now.',"success");
681+
showPopupPostConnection('Connected to Arm Neoverse based LLM! Start chatting now.',"success");
682682
//ping_txt.textContent = `Ping: ${ping}`
683683
traffic_txt.textContent = 'Server traffic: Low'
684684
}
685685
else if (data.cluster_utilization == 'high') {
686-
showPopupPostConnection('Connected to Arm Neoverse V2 based LLM! Traffic is high, delays may occur. Start chatting now.',"success");
686+
showPopupPostConnection('Connected to Arm Neoverse based LLM! Traffic is high, delays may occur. Start chatting now.',"success");
687687
//ping_txt.textContent = `Ping: ${ping}`
688688
traffic_txt.textContent = `Server traffic: High`
689689
}
690690
else if (data.cluster_utilization == 'at-limit') {
691-
showPopupPostConnection('Connected to Arm Neoverse V2 based LLM! Traffic is high, delays may occur. Start chatting now.',"warning");
691+
showPopupPostConnection('Connected to Arm Neoverse based LLM! Traffic is high, delays may occur. Start chatting now.',"warning");
692692
//ping_txt.textContent = `Ping: ${ping}`
693693
traffic_txt.textContent = `Server traffic: High`
694694
}

0 commit comments

Comments
 (0)