Skip to content

Commit ec1e89d

Browse files
author
Bob Strahan
committed
Update model parameter descriptions and add Claude Sonnet 4.5 support
1 parent d7e2c61 commit ec1e89d

File tree

4 files changed

+28
-22
lines changed

4 files changed

+28
-22
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ SPDX-License-Identifier: MIT-0
55

66
## [Unreleased]
77

8+
89
## [0.3.19]
910

1011
### Added
@@ -17,6 +18,11 @@ SPDX-License-Identifier: MIT-0
1718
- **Configuration**: Configurable via Web UI including model selection (Claude Sonnet 4 recommended), system prompt customization, max_log_events (default: 5), and time_range_hours_default (default: 24)
1819
- **Documentation**: Comprehensive guide in `docs/error-analyzer.md` with architecture diagrams, usage examples, best practices, troubleshooting guide.
1920

21+
- **Claude Sonnet 4.5 Model Support**
22+
- Added support for Claude Sonnet 4.5 and Claude Sonnet 4.5 - Long Context models
23+
- Available for configuration across all document processing steps
24+
25+
2026
### Fixed
2127
- Problem with setting correctly formatted WAF IPv4 CIDR range - #73
2228

patterns/pattern-1/template.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -366,15 +366,15 @@ Resources:
366366
order: 1
367367
temperature:
368368
type: number
369-
description: Sampling temperature
369+
description: "Sampling temperature (0.0-1.0). When > 0.0, this parameter is used and top_p is ignored. Set to 0.0 to use top_p instead."
370370
order: 2
371371
top_k:
372372
type: number
373373
description: Sampling Top K
374374
order: 3
375375
top_p:
376376
type: number
377-
description: Sampling Top P
377+
description: "Sampling Top P (nucleus sampling). Only used when temperature is 0.0. Ignored otherwise."
378378
order: 4
379379
max_tokens:
380380
type: number
@@ -418,15 +418,15 @@ Resources:
418418
order: 1
419419
temperature:
420420
type: number
421-
description: Sampling temperature
421+
description: "Sampling temperature (0.0-1.0). When > 0.0, this parameter is used and top_p is ignored. Set to 0.0 to use top_p instead."
422422
order: 2
423423
top_k:
424424
type: number
425425
description: Sampling Top K
426426
order: 3
427427
top_p:
428428
type: number
429-
description: Sampling Top P
429+
description: "Sampling Top P (nucleus sampling). Only used when temperature is 0.0. Ignored otherwise."
430430
order: 4
431431
max_tokens:
432432
type: number
@@ -462,14 +462,14 @@ Resources:
462462
order: 0
463463
temperature:
464464
type: number
465-
description: Temperature parameter for model creativity (0.0-1.0)
465+
description: "Temperature parameter for model creativity (0.0-1.0). When > 0.0, this parameter is used and top_p is ignored. Set to 0.0 to use top_p instead."
466466
minimum: 0.0
467467
maximum: 1.0
468468
default: 1.0
469469
order: 1
470470
top_p:
471471
type: number
472-
description: Top-p parameter for nucleus sampling (0.0-1.0)
472+
description: "Top-p parameter for nucleus sampling (0.0-1.0). Only used when temperature is 0.0. Ignored otherwise."
473473
minimum: 0.0
474474
maximum: 1.0
475475
default: 0.1

patterns/pattern-2/template.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ Resources:
526526
type: number
527527
minimum: 0
528528
maximum: 1
529-
description: Sampling temperature
529+
description: "Sampling temperature (0.0-1.0). When > 0.0, this parameter is used and top_p is ignored. Set to 0.0 to use top_p instead."
530530
order: 4
531531
top_k:
532532
type: integer
@@ -535,7 +535,7 @@ Resources:
535535
order: 5
536536
top_p:
537537
type: number
538-
description: Sampling Top P
538+
description: "Sampling Top P (nucleus sampling). Only used when temperature is 0.0. Ignored otherwise."
539539
order: 6
540540
max_tokens:
541541
type: number
@@ -606,7 +606,7 @@ Resources:
606606
type: number
607607
minimum: 0
608608
maximum: 1
609-
description: Sampling temperature
609+
description: "Sampling temperature (0.0-1.0). When > 0.0, this parameter is used and top_p is ignored. Set to 0.0 to use top_p instead."
610610
order: 2
611611
top_k:
612612
type: integer
@@ -615,7 +615,7 @@ Resources:
615615
order: 3
616616
top_p:
617617
type: number
618-
description: Sampling Top P
618+
description: "Sampling Top P (nucleus sampling). Only used when temperature is 0.0. Ignored otherwise."
619619
order: 4
620620
max_tokens:
621621
type: number
@@ -727,15 +727,15 @@ Resources:
727727
order: 5
728728
temperature:
729729
type: number
730-
description: Sampling temperature
730+
description: "Sampling temperature (0.0-1.0). When > 0.0, this parameter is used and top_p is ignored. Set to 0.0 to use top_p instead."
731731
order: 6
732732
top_k:
733733
type: number
734734
description: Sampling Top K
735735
order: 7
736736
top_p:
737737
type: number
738-
description: Sampling Top P
738+
description: "Sampling Top P (nucleus sampling). Only used when temperature is 0.0. Ignored otherwise."
739739
order: 8
740740
max_tokens:
741741
type: number
@@ -807,7 +807,7 @@ Resources:
807807
order: 1
808808
temperature:
809809
type: number
810-
description: Sampling temperature
810+
description: "Sampling temperature (0.0-1.0). When > 0.0, this parameter is used and top_p is ignored. Set to 0.0 to use top_p instead."
811811
default: 0.0
812812
order: 2
813813
top_k:
@@ -817,7 +817,7 @@ Resources:
817817
order: 3
818818
top_p:
819819
type: number
820-
description: Sampling Top P
820+
description: "Sampling Top P (nucleus sampling). Only used when temperature is 0.0. Ignored otherwise."
821821
order: 4
822822
max_tokens:
823823
type: number
@@ -853,14 +853,14 @@ Resources:
853853
order: 0
854854
temperature:
855855
type: number
856-
description: Temperature parameter for model creativity (0.0-1.0)
856+
description: "Temperature parameter for model creativity (0.0-1.0). When > 0.0, this parameter is used and top_p is ignored. Set to 0.0 to use top_p instead."
857857
minimum: 0.0
858858
maximum: 1.0
859859
default: 1.0
860860
order: 1
861861
top_p:
862862
type: number
863-
description: Top-p parameter for nucleus sampling (0.0-1.0)
863+
description: "Top-p parameter for nucleus sampling (0.0-1.0). Only used when temperature is 0.0. Ignored otherwise."
864864
minimum: 0.0
865865
maximum: 1.0
866866
default: 0.1

patterns/pattern-3/template.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ Resources:
510510
type: number
511511
minimum: 0
512512
maximum: 1
513-
description: Sampling temperature
513+
description: "Sampling temperature (0.0-1.0). When > 0.0, this parameter is used and top_p is ignored. Set to 0.0 to use top_p instead."
514514
order: 2
515515
top_k:
516516
type: integer
@@ -519,7 +519,7 @@ Resources:
519519
order: 3
520520
top_p:
521521
type: number
522-
description: Sampling Top P
522+
description: "Sampling Top P (nucleus sampling). Only used when temperature is 0.0. Ignored otherwise."
523523
order: 4
524524
max_tokens:
525525
type: number
@@ -622,15 +622,15 @@ Resources:
622622
order: 3
623623
temperature:
624624
type: number
625-
description: Sampling temperature
625+
description: "Sampling temperature (0.0-1.0). When > 0.0, this parameter is used and top_p is ignored. Set to 0.0 to use top_p instead."
626626
order: 4
627627
top_k:
628628
type: number
629629
description: Sampling Top K
630630
order: 5
631631
top_p:
632632
type: number
633-
description: Sampling Top P
633+
description: "Sampling Top P (nucleus sampling). Only used when temperature is 0.0. Ignored otherwise."
634634
order: 6
635635
max_tokens:
636636
type: number
@@ -663,15 +663,15 @@ Resources:
663663
order: 1
664664
temperature:
665665
type: number
666-
description: Sampling temperature
666+
description: "Sampling temperature (0.0-1.0). When > 0.0, this parameter is used and top_p is ignored. Set to 0.0 to use top_p instead."
667667
order: 2
668668
top_k:
669669
type: number
670670
description: Sampling Top K
671671
order: 3
672672
top_p:
673673
type: number
674-
description: Sampling Top P
674+
description: "Sampling Top P (nucleus sampling). Only used when temperature is 0.0. Ignored otherwise."
675675
order: 4
676676
max_tokens:
677677
type: number

0 commit comments

Comments
 (0)