From 3e507c0259ecd451705f6473f19abb94ebc17987 Mon Sep 17 00:00:00 2001 From: Simon Larsen Date: Fri, 28 Jun 2024 13:09:54 +0100 Subject: [PATCH] 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. --- .github/workflows/test-release.yaml | 2 +- Dashboard/src/Components/NavBar/NavBar.tsx | 20 ++++++++++---------- LLM/Readme.md | 2 +- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/test-release.yaml b/.github/workflows/test-release.yaml index e6a220a6f8..6e8fc0742a 100644 --- a/.github/workflows/test-release.yaml +++ b/.github/workflows/test-release.yaml @@ -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 diff --git a/Dashboard/src/Components/NavBar/NavBar.tsx b/Dashboard/src/Components/NavBar/NavBar.tsx index 5fcb48a200..bc2b4ee440 100644 --- a/Dashboard/src/Components/NavBar/NavBar.tsx +++ b/Dashboard/src/Components/NavBar/NavBar.tsx @@ -144,16 +144,16 @@ const DashboardNavbar: FunctionComponent = ( }} > { - 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(); + }} + />