feat(anthropic): add `EffortXHigh` constant (#204)

Danielle Maywood created

Change summary

providers/anthropic/provider_options.go | 2 ++
1 file changed, 2 insertions(+)

Detailed changes

providers/anthropic/provider_options.go 🔗

@@ -19,6 +19,8 @@ const (
 	EffortMedium Effort = "medium"
 	// EffortHigh represents high output effort.
 	EffortHigh Effort = "high"
+	// EffortXHigh represents extra-high output effort.
+	EffortXHigh Effort = "xhigh"
 	// EffortMax represents maximum output effort.
 	EffortMax Effort = "max"
 )