Commit 9f5ca39
committed
[Docs][API] Remove warning about LoRARequest being internal-only
Since `LoRARequest` is part of the public API - e.g. as a parameter to `LLM.generate()`
or since vllm-project#30636 a member of `RequestOutput` - this warning looks outdated:
```python
class LoRARequest(...):
"""
Request for a LoRA adapter.
Note that this class should be used internally. For online
serving, it is recommended to not allow users to use this class but
instead provide another layer of abstraction to prevent users from
accessing unauthorized LoRA adapters.
...
"""
```
Indeed, `LoRAReqest` seems to have been part of the public API since it was added in vllm-project#1804
Signed-off-by: Mark McLoughlin <[email protected]>1 parent 676db55 commit 9f5ca39
1 file changed
+0
-5
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
17 | | - | |
18 | | - | |
19 | | - | |
20 | | - | |
21 | | - | |
22 | 17 | | |
23 | 18 | | |
24 | 19 | | |
| |||
0 commit comments