Skip to content

Commit

Permalink
fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
ishaansehgal99 committed Oct 13, 2023
1 parent b2d948a commit 307da12
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/preset-image-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -285,11 +285,11 @@ jobs:
if [[ ${{ needs.setup.outputs.image_tag == 'latest'}} ]]; then
echo "ACR_NAME=aimodelsregistry" >> $GITHUB_OUTPUT
az aks update -n GitRunner -g llm-test --attach-acr aimodelsregistry
az acr login --name aimodelsregistry
az acr login -n aimodelsregistry --expose-token
else
echo "ACR_NAME=aimodelsregistrytest" >> $GITHUB_OUTPUT
az aks update -n GitRunner -g llm-test --attach-acr aimodelsregistrytest
az acr login --name aimodelsregistrytest
az acr login -n aimodelsregistrytest --expose-token
fi
- name: Check if Docker Pod is Running (if not run it)
Expand Down
1 change: 0 additions & 1 deletion presets/falcon/inference-api.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ def health_check():
raise HTTPException(status_code=500, detail="Falcon pipeline not initialized")
return {"status": "Healthy"}


class GenerationParams(BaseModel):
prompt: str
max_length: int = 200
Expand Down

0 comments on commit 307da12

Please sign in to comment.