Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add page title option to image analysis app creation form #61

Merged
merged 2 commits into from
Nov 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions charts/azimuth-image-analysis/azimuth-ui.schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ controls:
sortOrder:
- /azimuth-llm/huggingface/model
- /azimuth-llm/huggingface/token
- /azimuth-llm/ui/appSettings/page_title
- /azimuth-llm/api/image/version
- /azimuth-llm/ui/appSettings/llm_params/temperature
- /azimuth-llm/ui/appSettings/llm_params/max_tokens
Expand Down
6 changes: 6 additions & 0 deletions charts/azimuth-image-analysis/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,12 @@
"title": "Model Name",
"description": "Model name supplied to the OpenAI client in frontend web app. Should match huggingface.model above."
},
"page_title": {
"type": "string",
"title": "Page Title",
"description": "The title to display at the top of the chat interface.",
"default": "Vision Model Image Analysis"
},
"llm_params": {
"$comment": "top_k parameter causes vLLM to error for most (all?) vision models so is excluded here",
"type": "object",
Expand Down