Skip to content

Commit

Permalink
fixed workflow file_2
Browse files Browse the repository at this point in the history
  • Loading branch information
ngupta10 committed Jan 11, 2024
1 parent 73279db commit 7adca4d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,13 +116,13 @@ jobs:
- name: Download spaCy large model
run: |
python -m spacy download en_core_web_lg
- name: Download AI Model from Google Drive
run: |
access_token="${{ secrets.GOOGLE_DRIVE_ACCESS_TOKEN }}"
file_id="${{ secrets.GOOGLE_DRIVE_FILE_ID }}"
file_name="./tests/llama-2-7b-chat.Q5_K_S.gguf"
!curl -H "Authorization: Bearer $access_token" "https://www.googleapis.com/drive/v3/files/$file_id?alt=media" -o "$file_name"
- name: Download AI Model from Google Drive
run: |
access_token="${{ secrets.GOOGLE_DRIVE_ACCESS_TOKEN }}"
file_id="${{ secrets.GOOGLE_DRIVE_FILE_ID }}"
file_name="./tests/llama-2-7b-chat.Q5_K_S.gguf"
!curl -H "Authorization: Bearer $access_token" "https://www.googleapis.com/drive/v3/files/$file_id?alt=media" -o "$file_name"
- name: Test Code Coverage
run: pytest --cov=querent -vv --durations=0
Expand Down

0 comments on commit 7adca4d

Please sign in to comment.