Skip to content

Commit

Permalink
fix: various linter adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
drbh committed Feb 20, 2025
1 parent b1a9dff commit 262b6b1
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,12 @@ jobs:
export runs_on="ubuntu-latest"
export platform=""
export extra_pytest=""
if [[ "${GITHUB_REF}" == "refs/tags/*" ]]; then
export build_type="release";
export target="";
else
if [[ "${GITHUB_REF}" == "refs/tags/*" ]]; then
export build_type="release";
export target="";
else
export build_type="dev";
export target="ci-runtime";
export target="ci-runtime";
fi
;;
rocm)
Expand Down
4 changes: 2 additions & 2 deletions docs/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -1746,7 +1746,7 @@
"type": {
"type": "string",
"enum": [
"json"
"json_schema"
]
},
"value": {
Expand Down Expand Up @@ -2370,4 +2370,4 @@
"description": "Hugging Face Text Generation Inference API"
}
]
}
}
2 changes: 1 addition & 1 deletion docs/source/backends/trtllm.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,4 +179,4 @@ ENV CMAKE_PREFIX_PATH="/usr/local/mpi:/usr/local/tensorrt"

ENV USE_LLD_LINKER=ON
ENV CUDA_ARCH_LIST=${cuda_arch_list}
```
```
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class Weather(BaseModel):
unit: str
temperature: List[int]

json_payload={
json_payload = {
"model": "tgi",
"messages": [
{
Expand Down

0 comments on commit 262b6b1

Please sign in to comment.