Skip to content

Commit 262b6b1

Browse files
committed
fix: various linter adjustments
1 parent b1a9dff commit 262b6b1

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/build.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,12 @@ jobs:
7474
export runs_on="ubuntu-latest"
7575
export platform=""
7676
export extra_pytest=""
77-
if [[ "${GITHUB_REF}" == "refs/tags/*" ]]; then
78-
export build_type="release";
79-
export target="";
80-
else
77+
if [[ "${GITHUB_REF}" == "refs/tags/*" ]]; then
78+
export build_type="release";
79+
export target="";
80+
else
8181
export build_type="dev";
82-
export target="ci-runtime";
82+
export target="ci-runtime";
8383
fi
8484
;;
8585
rocm)

docs/openapi.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1746,7 +1746,7 @@
17461746
"type": {
17471747
"type": "string",
17481748
"enum": [
1749-
"json"
1749+
"json_schema"
17501750
]
17511751
},
17521752
"value": {
@@ -2370,4 +2370,4 @@
23702370
"description": "Hugging Face Text Generation Inference API"
23712371
}
23722372
]
2373-
}
2373+
}

docs/source/backends/trtllm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,4 +179,4 @@ ENV CMAKE_PREFIX_PATH="/usr/local/mpi:/usr/local/tensorrt"
179179

180180
ENV USE_LLD_LINKER=ON
181181
ENV CUDA_ARCH_LIST=${cuda_arch_list}
182-
```
182+
```

integration-tests/models/test_grammar_response_format_llama.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class Weather(BaseModel):
2929
unit: str
3030
temperature: List[int]
3131

32-
json_payload={
32+
json_payload = {
3333
"model": "tgi",
3434
"messages": [
3535
{

0 commit comments

Comments
 (0)