Skip to content

Commit

Permalink
Fix logo, bump version, improve values.schema.json
Browse files Browse the repository at this point in the history
  • Loading branch information
LancelotMarti committed Dec 4, 2024
1 parent e7254ab commit 59cd7c7
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 5 deletions.
6 changes: 3 additions & 3 deletions charts/vllm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: vllm
description: vLLM is a high-performance, low-latency, and memory-efficient library designed for
serving large language models (LLMs) at scale.
icon: https://github.com/vllm-project/vllm/blob/main/docs/source/assets/logos/vllm-logo-only-light.png
icon: https://raw.githubusercontent.com/vllm-project/vllm/refs/heads/main/docs/source/assets/logos/vllm-logo-only-light.png
# A chart can be either an 'application' or a 'library' chart.
#
# Application charts are a collection of templates that can be packaged into versioned archives
Expand All @@ -16,13 +16,13 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.0.2
version: 0.0.3

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "0.0.2"
appVersion: "0.0.3"

dependencies:
- name: llm-serving
Expand Down
18 changes: 16 additions & 2 deletions charts/vllm/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -221,12 +221,26 @@
"bucket": {
"type": "string",
"description": "Name of the S3 bucket",
"default": "lmarti"
"default": "lmarti",
"x-onyxia": {
"overwriteDefaultWith": "lmarti"
},
"hidden": {
"value": false,
"path": "s3/enabled"
}
},
"modelPath": {
"type": "string",
"description": "Path to the model within the S3 bucket",
"default": "diffusion/models/Phi-3-mini-4k-instruct"
"default": "diffusion/models/Phi-3-mini-4k-instruct",
"x-onyxia": {
"overwriteDefaultWith": "diffusion/models/Phi-3-mini-4k-instruct"
},
"hidden": {
"value": false,
"path": "s3/enabled"
}
}
}
}
Expand Down

0 comments on commit 59cd7c7

Please sign in to comment.