Skip to content

Commit afc6469

Browse files
committed
Update appSettings and related comments
1 parent 96ac909 commit afc6469

File tree

1 file changed

+14
-11
lines changed

1 file changed

+14
-11
lines changed

chart/values.yaml

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,21 @@ api:
8080
ui:
8181
# Toggles installation of the gradio web UI
8282
enabled: true
83-
# The file from the UI config map to execute as the entrypoint to the frontend app
84-
entrypoint: app.py
85-
# The values to be written to settings.yml for parsing as frontend app setting
86-
# (see example_app.py and config.py for example using pydantic-settings to configure app)
83+
# Container image config
84+
image:
85+
repository: ghcr.io/stackhpc/azimuth-llm-chat-interface
86+
version: 87a0342
87+
imagePullPolicy:
88+
# The settings to be passed to the frontend web app.
89+
# Format depends on the chosen UI image above. For each of the UIs
90+
# included in the web-apps/ folder of this git repository there is a
91+
# defaults.yml file (e.g. web-apps/text-chat/defaults.yml) listing all
92+
# available configuration options.
93+
# FIXME: Figure out how to make JSON schema fit
94+
# with different config options for each web app.
8795
appSettings:
88-
hf_model_name: *model-name
89-
hf_model_instruction: "You are a helpful AI assistant. Please response appropriately."
96+
model_name: *model-name
97+
model_instruction: "You are a helpful AI assistant. Please response appropriately."
9098
# Use local system fonts by default to avoid GDPR issues
9199
# with Gradio's defaults fonts which require fetching from
92100
# the Google fonts API. To restore default Gradio theme
@@ -98,11 +106,6 @@ ui:
98106
font_mono:
99107
- sans-serif
100108
- Arial
101-
# Container image config
102-
image:
103-
repository: ghcr.io/stackhpc/azimuth-llm-chat-interface
104-
version: 87a0342
105-
imagePullPolicy:
106109
# Service config
107110
service:
108111
name: web-app

0 commit comments

Comments
 (0)