@zuplo/lint-win32-x64 7.6.7 → 7.6.8
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.
|
@@ -761,7 +761,7 @@
|
|
|
761
761
|
"classifierAppID": {
|
|
762
762
|
"type": "string",
|
|
763
763
|
"title": "Classifier App ID",
|
|
764
|
-
"description": "The AI Gateway application id
|
|
764
|
+
"description": "The AI Gateway application id used to run the classifier prompt and evaluate the user's request.",
|
|
765
765
|
"examples": ["config_1234"]
|
|
766
766
|
},
|
|
767
767
|
"classifierAppApiKey": {
|
|
@@ -773,20 +773,20 @@
|
|
|
773
773
|
"classifierModel": {
|
|
774
774
|
"type": "string",
|
|
775
775
|
"title": "Classifier Model",
|
|
776
|
-
"description": "The `providerName/model`
|
|
776
|
+
"description": "The model (`providerName/model`) the classifier uses to evaluate the user's request. E.g. `openai/gpt-4o-mini`.",
|
|
777
777
|
"pattern": "^[^/\\s]+/.+$",
|
|
778
778
|
"examples": ["openai/gpt-4o-mini"]
|
|
779
779
|
},
|
|
780
780
|
"smartRoutingEnabled": {
|
|
781
781
|
"type": "boolean",
|
|
782
782
|
"title": "Smart Routing Enabled",
|
|
783
|
-
"description": "When true, apply model routing
|
|
783
|
+
"description": "When true, apply model routing based on the models set in `modelsByComplexity` when confidence score meets the `minConfidenceForRouting` threshold. When set to false, classification still runs but model routing is not applied, useful for debugging or testing the classifier prompt.",
|
|
784
784
|
"default": false
|
|
785
785
|
},
|
|
786
786
|
"modelsByComplexity": {
|
|
787
787
|
"type": "object",
|
|
788
788
|
"title": "Models By Complexity",
|
|
789
|
-
"description": "
|
|
789
|
+
"description": "Enables which model will be used based on the classifier results (`low`, `medium` and `high`). This configuration is applied only when `smartRoutingEnabled` is true and confidence score meets the `minConfidenceForRouting` threshold.",
|
|
790
790
|
"additionalProperties": false,
|
|
791
791
|
"required": ["low", "medium", "high"],
|
|
792
792
|
"properties": {
|
|
@@ -816,7 +816,7 @@
|
|
|
816
816
|
"intents": {
|
|
817
817
|
"type": "array",
|
|
818
818
|
"title": "Intents",
|
|
819
|
-
"description": "
|
|
819
|
+
"description": "Dictionary of intents used to classify the user message being evaluated. Omit to use the built-in dictionary (code, summarization, translation, qa, conversation, classification, creative_writing, agentic, document_qa, other).",
|
|
820
820
|
"minItems": 1,
|
|
821
821
|
"items": {
|
|
822
822
|
"type": "object",
|
|
@@ -826,14 +826,14 @@
|
|
|
826
826
|
"id": {
|
|
827
827
|
"type": "string",
|
|
828
828
|
"title": "Intent ID",
|
|
829
|
-
"description": "
|
|
829
|
+
"description": "Label used to classify the intent of the user message being evaluated.",
|
|
830
830
|
"minLength": 1,
|
|
831
831
|
"examples": ["code"]
|
|
832
832
|
},
|
|
833
833
|
"description": {
|
|
834
834
|
"type": "string",
|
|
835
835
|
"title": "Intent Description",
|
|
836
|
-
"description": "Short description
|
|
836
|
+
"description": "Short description of the intent label.",
|
|
837
837
|
"examples": [
|
|
838
838
|
"Write, edit, refactor, debug, or review source code."
|
|
839
839
|
]
|
|
@@ -843,7 +843,7 @@
|
|
|
843
843
|
},
|
|
844
844
|
"classifierPrompt": {
|
|
845
845
|
"title": "Classifier Prompt",
|
|
846
|
-
"description": "
|
|
846
|
+
"description": "Prompt used to analyze and classify the user message. Omit to use the built-in classifier prompt.",
|
|
847
847
|
"oneOf": [
|
|
848
848
|
{
|
|
849
849
|
"type": "string",
|
|
@@ -870,7 +870,7 @@
|
|
|
870
870
|
"classifierTimeoutMs": {
|
|
871
871
|
"type": "integer",
|
|
872
872
|
"title": "Classifier Timeout (ms)",
|
|
873
|
-
"description": "
|
|
873
|
+
"description": "Timeout configured for the classifier task. When exceeded, the request is forwarded without classification to the original model.",
|
|
874
874
|
"minimum": 1,
|
|
875
875
|
"maximum": 120000,
|
|
876
876
|
"default": 8000,
|
|
@@ -879,7 +879,7 @@
|
|
|
879
879
|
"maxPromptChars": {
|
|
880
880
|
"type": "integer",
|
|
881
881
|
"title": "Max Prompt Characters",
|
|
882
|
-
"description": "Maximum characters of user
|
|
882
|
+
"description": "Maximum characters of user message sent to the classifier. Longer messages get truncated.",
|
|
883
883
|
"minimum": 1,
|
|
884
884
|
"default": 8000,
|
|
885
885
|
"x-advanced": true
|
package/bin/version.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
7.6.
|
|
1
|
+
7.6.8
|