chore: Update Hugging Face clone URL in test-release.yaml

Fix a typo in the Hugging Face clone URL in the test-release.yaml file, which was causing the cloning process to fail. The "@" symbol was missing in the URL. This commit adds the missing "@" symbol to the URL.
This commit is contained in:
Simon Larsen
2024-06-28 13:09:54 +01:00
parent 5385c8e65c
commit 3e507c0259
3 changed files with 12 additions and 12 deletions

View File

@@ -45,7 +45,7 @@ jobs:
node-version: 18.3.0
- name: Download the Model from Hugging Face
run: cd ./Llama/Models && git clone https://${{ secrets.HUGGING_FACE_USERNAME }}:${{ secrets.HUGGING_FACE_PASSWORD }}@huggingface.co/meta-llama/Meta-Llama-3-8B-Instruct
run: cd ./LLM/Models && git clone https://${{ secrets.HUGGING_FACE_USERNAME }}:${{ secrets.HUGGING_FACE_PASSWORD }}@huggingface.co/meta-llama/Meta-Llama-3-8B-Instruct
- name: Set up QEMU
uses: docker/setup-qemu-action@v2

View File

@@ -144,16 +144,16 @@ const DashboardNavbar: FunctionComponent<ComponentProps> = (
}}
>
<NavBarMenuItem
title="Reliability Copilot"
description="Fix and improve your code automatically."
route={RouteUtil.populateRouteParams(
RouteMap[PageMap.RELIABILITY_COPILOT] as Route
)}
icon={IconProp.Bolt}
onClick={() => {
forceHideMoreMenu();
}}
/>
title="Reliability Copilot"
description="Fix and improve your code automatically."
route={RouteUtil.populateRouteParams(
RouteMap[PageMap.RELIABILITY_COPILOT] as Route,
)}
icon={IconProp.Bolt}
onClick={() => {
forceHideMoreMenu();
}}
/>
<NavBarMenuItem
title="Service Catalog"

View File

@@ -11,7 +11,7 @@ git lfs install
```
```bash
cd ./Llama/Models
cd ./LLM/Models
# Here we are downloading the Meta-Llama-3-8B-Instruct model
git clone https://huggingface.co/meta-llama/Meta-Llama-3-8B-Instruct
```