completion-kit 0.21.0 → 0.21.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4fc454c51bfbe7917a7b3f248b055d58b6a147fe7e9325dadc196d9aebf7c762
|
|
4
|
+
data.tar.gz: 5e96ffb9c4d1e98c4917ec7847a6b734e9153142184d0b540585d8f7c8aba3b6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 11ad299c28fdb4dc4be3ee113c99ebf19ec6cb9d422dbc180cb253292adc7373d2d183aef7fd21c5e7293c1acc017f3c0689f34a5ded2e13b17674a86cacb6e6
|
|
7
|
+
data.tar.gz: b995b586a1b2c5422be141b9e94476ea0d32928dc81e8aca4210c54c1b4d8ea6cd0d7729621a0155438a2b7819977e6678e1000c343d9160ec09db7120be47e6
|
|
@@ -1922,13 +1922,6 @@ label.ck-checkbox input {
|
|
|
1922
1922
|
cursor: pointer;
|
|
1923
1923
|
}
|
|
1924
1924
|
|
|
1925
|
-
.ck-radio-info {
|
|
1926
|
-
width: 16px;
|
|
1927
|
-
height: 16px;
|
|
1928
|
-
color: var(--ck-muted);
|
|
1929
|
-
cursor: help;
|
|
1930
|
-
}
|
|
1931
|
-
|
|
1932
1925
|
.ck-field-row {
|
|
1933
1926
|
display: flex;
|
|
1934
1927
|
gap: 1rem;
|
|
@@ -79,12 +79,10 @@
|
|
|
79
79
|
<label class="ck-radio">
|
|
80
80
|
<%= form.radio_button :metric_type, "llm_judge", checked: !metric.check? %>
|
|
81
81
|
<span>LLM judge (1-5)</span>
|
|
82
|
-
<%= heroicon_tag "information-circle", variant: :outline, size: 16, class: "ck-radio-info", "aria-hidden": "true", title: "An AI reads each response and rates it 1 to 5 stars against your rubric, with a written reason. Best for subjective quality: tone, helpfulness, accuracy." %>
|
|
83
82
|
</label>
|
|
84
83
|
<label class="ck-radio">
|
|
85
84
|
<%= form.radio_button :metric_type, "check", checked: metric.check? %>
|
|
86
85
|
<span>Deterministic check</span>
|
|
87
|
-
<%= heroicon_tag "information-circle", variant: :outline, size: 16, class: "ck-radio-info", "aria-hidden": "true", title: "A rule that passes or fails instantly with no AI and no cost. Best for exact things: valid JSON, contains a phrase, no refusal." %>
|
|
88
86
|
</label>
|
|
89
87
|
</div>
|
|
90
88
|
<% end %>
|