Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
7b3c9ff9
Unverified
Commit
7b3c9ff9
authored
Jun 12, 2025
by
Aaron Pham
Committed by
GitHub
Jun 13, 2025
Browse files
[Doc] uses absolute links for structured outputs (#19582)
Signed-off-by:
Aaron Pham
<
contact@aarnphm.xyz
>
parent
c68698b3
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
docs/features/structured_outputs.md
docs/features/structured_outputs.md
+3
-3
examples/online_serving/structured_outputs/README.md
examples/online_serving/structured_outputs/README.md
+1
-1
No files found.
docs/features/structured_outputs.md
View file @
7b3c9ff9
...
...
@@ -149,7 +149,7 @@ completion = client.chat.completions.create(
print
(
completion
.
choices
[
0
].
message
.
content
)
```
See also:
[
full example
](
../..
/examples/online_serving/structured_outputs
)
See also:
[
full example
](
https://docs.vllm.ai/en/latest
/examples/online_serving/structured_outputs
.html
)
## Reasoning Outputs
...
...
@@ -190,7 +190,7 @@ print("reasoning_content: ", completion.choices[0].message.reasoning_content)
print
(
"content: "
,
completion
.
choices
[
0
].
message
.
content
)
```
See also:
[
full example
](
../..
/examples/online_serving/structured_outputs
)
See also:
[
full example
](
https://docs.vllm.ai/en/latest
/examples/online_serving/structured_outputs
.html
)
## Experimental Automatic Parsing (OpenAI API)
...
...
@@ -311,4 +311,4 @@ outputs = llm.generate(
print
(
outputs
[
0
].
outputs
[
0
].
text
)
```
See also:
[
full example
](
../..
/examples/online_serving/structured_outputs
)
See also:
[
full example
](
https://docs.vllm.ai/en/latest
/examples/online_serving/structured_outputs
.html
)
examples/online_serving/structured_outputs/README.md
View file @
7b3c9ff9
...
...
@@ -22,7 +22,7 @@ If you want to run this script standalone with `uv`, you can use the following:
uvx
--from
git+https://github.com/vllm-project/vllm#subdirectory
=
examples/online_serving/structured_outputs structured-output
```
See
[
feature docs
](
../../..
/features/structured_outputs.
md
)
for more information.
See
[
feature docs
](
https://docs.vllm.ai/en/latest
/features/structured_outputs.
html
)
for more information.
!!! tip
If vLLM is running remotely, then set
`OPENAI_BASE_URL=<remote_url>`
before running the script.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment