default the region to us

Kujtim Hoxha created

Change summary

internal/llm/provider/bedrock.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

internal/llm/provider/bedrock.go 🔗

@@ -40,7 +40,7 @@ func NewBedrockProvider(opts ...BedrockOption) (Provider, error) {
 	}
 
 	if region == "" {
-		return nil, errors.New("AWS_REGION or AWS_DEFAULT_REGION environment variable is required")
+		region = "us-east-1" // default region
 	}
 	if len(region) < 2 {
 		return nil, errors.New("AWS_REGION or AWS_DEFAULT_REGION environment variable is invalid")