docs: add LoRA adapter documentation for LLMInferenceService#654
Open
andresllh wants to merge 2 commits into
Open
docs: add LoRA adapter documentation for LLMInferenceService#654andresllh wants to merge 2 commits into
andresllh wants to merge 2 commits into
Conversation
✅ Deploy Preview for elastic-nobel-0aef7a ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
7 tasks
Add comprehensive documentation for LoRA (Low-Rank Adaptation) adapter support in LLMInferenceService, which was implemented in kserve/kserve#5317. Changes: - New page: docs/model-serving/generative-inference/llmisvc/lora-adapters.md - Overview of LoRA adapters and benefits - Supported URI schemes (hf://, s3://, pvc://) - Configuration examples and field reference - Usage at inference time with OpenAI-compatible API - Monitoring and troubleshooting guide - Updated llmisvc-configuration.md with LoRA adapter configuration section - Updated llmisvc-overview.md with expanded LoRA mention and link - Updated sidebars.ts with new navigation entry Related: - Implementation PR: kserve/kserve#5317 - Sample docs: https://github.com/kserve/kserve/tree/master/docs/samples/llmisvc/lora-adapters Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> Signed-off-by: Andres Llausas <allausas@redhat.com>
70ac1ab to
3895e79
Compare
Signed-off-by: Andres Llausas <allausas@redhat.com>
pierDipi
reviewed
May 14, 2026
Comment on lines
+130
to
+150
| **S3 Configuration with Credentials**: | ||
|
|
||
| ```yaml | ||
| template: | ||
| containers: | ||
| - name: storage-initializer | ||
| env: | ||
| - name: AWS_ACCESS_KEY_ID | ||
| valueFrom: | ||
| secretKeyRef: | ||
| name: s3-config | ||
| key: AWS_ACCESS_KEY_ID | ||
| - name: AWS_SECRET_ACCESS_KEY | ||
| valueFrom: | ||
| secretKeyRef: | ||
| name: s3-config | ||
| key: AWS_SECRET_ACCESS_KEY | ||
| - name: S3_ENDPOINT | ||
| value: "https://minio.example.com" | ||
| - name: S3_USE_HTTPS | ||
| value: "1" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add comprehensive documentation for LoRA (Low-Rank Adaptation) adapter support in LLMInferenceService, which was implemented in kserve/kserve#5317.
Changes:
New page: docs/model-serving/generative-inference/llmisvc/lora-adapters.md
Updated llmisvc-configuration.md with LoRA adapter configuration section
Updated llmisvc-overview.md with expanded LoRA mention and link
Updated sidebars.ts with new navigation entry
Related:
"Fixes #issue-number" or "Add description of the problem this PR solves"
Proposed Changes