You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/reminder_comment.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ jobs:
15
15
owner: context.repo.owner,
16
16
repo: context.repo.repo,
17
17
issue_number: context.issue.number,
18
-
body: '👋 Hi! Thank you for contributing to the vLLM project.\n Just a reminder: PRs would not trigger full CI run by default. Instead, it would only run `fastcheck` CI which consists a small and essential subset of CI tests to quickly catch errors. You can run other CI tests on top of default ones by unblocking the steps in your `fast-check` build on Buildkite UI. \n\nOnce the PR is approved and ready to go, please make sure to run full CI as it is required to merge (or just use auto-merge).\n\n To run full CI, you can do one of these:\n- Comment `/ready` on the PR\n- Add `ready` label to the PR\n- Enable auto-merge.\n\n🚀'
18
+
body: '👋 Hi! Thank you for contributing to the vLLM project.\n Just a reminder: PRs would not trigger full CI run by default. Instead, it would only run `fastcheck` CI which starts running only a small and essential subset of CI tests to quickly catch errors. You can run other CI tests on top of those by going to your `fastcheck` build on Buildkite UI (linked in the PR checks section) and unblock them. If you do not have permission to unblock, ping `simon-mo` or `khluu` to add you in our Buildkite org. \n\nOnce the PR is approved and ready to go, your PR reviewer(s) can run CI to test the changes comprehensively before merging.\n\n To run CI, PR reviewers can do one of these:\n- Add `ready` label to the PR\n- Enable auto-merge.\n\n🚀'
The `serve` module can also accept arguments from a config file in
117
+
`yaml` format. The arguments in the yaml must be specified using the
118
+
long form of the argument outlined [here](https://docs.vllm.ai/en/latest/serving/openai_compatible_server.html#command-line-arguments-for-the-server):
119
+
120
+
For example:
121
+
122
+
```yaml
123
+
# config.yaml
124
+
125
+
host: "127.0.0.1"
126
+
port: 6379
127
+
uvicorn-log-level: "info"
128
+
```
129
+
130
+
```bash
131
+
$ vllm serve SOME_MODEL --config config.yaml
132
+
```
133
+
---
134
+
**NOTE**
135
+
In case an argument is supplied using command line and the config file, the value from the commandline will take precedence.
136
+
The order of priorities is `command line > config file values > defaults`.
137
+
138
+
---
139
+
114
140
## Tool calling in the chat completion API
115
141
vLLM supports only named function calling in the chat completion API. The `tool_choice` options `auto` and `required` are **not yet supported** but on the roadmap.
0 commit comments