Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
billytrend-cohere committed Sep 30, 2024
1 parent c796595 commit 91d7cc1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/cohere/sagemaker_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

from .aws_client import AwsClient
from .manually_maintained.cohere_aws.client import Client
from .manually_maintained.cohere_aws.mode import Mode


class SagemakerClient(AwsClient):
Expand All @@ -25,4 +26,4 @@ def __init__(
aws_region=aws_region,
timeout=timeout,
)
self.sagemaker_finetuning = Client(region_name=aws_region)
self.sagemaker_finetuning = Client(region_name=aws_region, mode=Mode.SAGEMAKER)

0 comments on commit 91d7cc1

Please sign in to comment.