File tree Expand file tree Collapse file tree 2 files changed +21
-9
lines changed
charts/azimuth-image-analysis Expand file tree Collapse file tree 2 files changed +21
-9
lines changed Original file line number Diff line number Diff line change @@ -10,14 +10,22 @@ controls:
10
10
type : MirrorControl
11
11
path : /azimuth-llm/huggingface/model
12
12
visuallyHidden : true
13
+ # Azimuth UI doesn't handle json type ["integer","null"]
14
+ # properly so we allow any type in JSON schema then
15
+ # constrain to (optional) integer here.
16
+ /azimuth-llm/api/modelMaxContextLength :
17
+ type : IntegerControl
18
+ minimum : 100
19
+ required : false
13
20
14
21
sortOrder :
15
- - /huggingface/model
16
- - /huggingface/token
17
- - /api/image/version
18
- - /ui/appSettings/llm_params/temperature
19
- - /ui/appSettings/llm_params/max_tokens
20
- - /ui/appSettings/llm_params/frequency_penalty
21
- - /ui/appSettings/llm_params/presence_penalty
22
- - /ui/appSettings/llm_params/top_p
23
- - /ui/appSettings/llm_params/top_k
22
+ - /azimuth-llm/huggingface/model
23
+ - /azimuth-llm/huggingface/token
24
+ - /azimuth-llm/api/image/version
25
+ - /azimuth-llm/ui/appSettings/llm_params/temperature
26
+ - /azimuth-llm/ui/appSettings/llm_params/max_tokens
27
+ - /azimuth-llm/ui/appSettings/llm_params/frequency_penalty
28
+ - /azimuth-llm/ui/appSettings/llm_params/presence_penalty
29
+ - /azimuth-llm/ui/appSettings/llm_params/top_p
30
+ - /azimuth-llm/ui/appSettings/llm_params/top_k
31
+ - /azimuth-llm/api/modelMaxContextLength
Original file line number Diff line number Diff line change 39
39
"default" : " v0.6.3"
40
40
}
41
41
}
42
+ },
43
+ "modelMaxContextLength" : {
44
+ "title" : " Model Context Length" ,
45
+ "description" : " An override for the maximum context length to allow, if the model's default is not suitable."
42
46
}
43
47
}
44
48
},
You can’t perform that action at this time.
0 commit comments