mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 00:32:12 +02:00
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:
2
.github/workflows/test-release.yaml
vendored
2
.github/workflows/test-release.yaml
vendored
@@ -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
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user